6fea021e3dbe71aaa93512aba699d1bfda3d520d |
|
29-Jun-2011 |
Marc Blank <mblank@google.com> |
Remove redundant and unused constants Change-Id: Ie8658f86737880e3127a0a2c3b7f0557dde98b29
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
66a47b8dac5e97e37c30b928bc5a227d74baada9 |
|
27-Jun-2011 |
Marc Blank <mblank@google.com> |
Clean up/simplify ExchangeUtils/ExchangeStore * Rename ExchangeUtils to EmailServiceUtils * Create calls for Exchange to use (eventually remove these) * Get rid of lots of nonsense in ExchangeStore Change-Id: Ic538cfe1de57eca24088ee1f590264283d12f511
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
f5418f1f93b02e7fab9f15eb201800b65510998e |
|
14-Jun-2011 |
Marc Blank <mblank@google.com> |
Move Account into its own top-level class Change-Id: Ide7c991b7d4d418dbe17164421425bf898ba64ee
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
44f5cd67c97da6a5c7e63a73b4dca7057b83cdbb |
|
01-Jun-2011 |
Todd Kennedy <toddke@google.com> |
Remove widget views The new widget UX allows for a single display mode for the widget. This can be configured when the widget is added or at a later time during widget re-configuration. We don't have the configuration activity (yet). We first need to restructure the widget to take a single account / mailbox combination. Hooking up the configuration activity will occur in a future CL. Change-Id: I38a5796c44938a6abd0d2bb50ac77241cc86a497
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
12b82d9374947c9268217f45befe8a74bd9b60d7 |
|
20-May-2011 |
Ben Komalo <benkomalo@google.com> |
Move HostAuth to top level class. No other changes made. Change-Id: I1c6497c98abc0f99443ea42d8aed6295b263c123
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
2866284a6d4ee4b368fcaf412c540b21d457e065 |
|
13-May-2011 |
Ben Komalo <benkomalo@google.com> |
Rename AccountSettingsXL -> AccountSettings This activity already supports phone and tablet mode. Only renames in this change - no other change. Change-Id: Ieca17137af45e3860812091f69cd4d9b55ddf3ec
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
25ab2df296d524671616831122f9a3c59132ae51 |
|
02-Mar-2011 |
Marc Blank <mblank@google.com> |
Fix typo and comment Change-Id: Iffc69baf98c05a09693ba9a053c91d921fc1b423
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
8c89674b64f6669fa94bf593abad0f1e2255a812 |
|
22-Feb-2011 |
Todd Kennedy <toddke@google.com> |
Always set a delete policy for legacy accounts The delete policy can only be set for POP3 accounts. However, the delete policy is used for all legacy accounts (that includes IMAP). As such, we need to make sure IMAP accounts also have their policy set; even though the setting is not configurable by the user. The delete policy does not mean anything for Exchange accounts, so, we do not need to modify the account setup code for them. bug 3074164 Change-Id: Iab10d2997404b3b0c10a60a64fb652540c0d2d1a
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
31d9acbf0623872f9d4a2b3210b5970854b654c7 |
|
12-Feb-2011 |
Marc Blank <mblank@google.com> |
Email split, part huit: Refactor constants, clean emailcommon * There are three pieces to this CL (sorry): 1) Move and/or rename some constants into emailcommon 2) Move Utility to emailcommon, moving the few UI related utilities back into Email (FolderProperties and UiUtilities) 3) Remove all references to resources from emailcommon * The three pieces relate in that, between them, they allow the emailcommon static library to compile cleanly Bug: 3442973 Change-Id: Ic5e3abaa2a1b36999e0b6653c6c2134ea1bd544f
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
314a51cb1d5bc538f069b6b13d8dffd575a5cc44 |
|
08-Feb-2011 |
Makoto Onuki <omakoto@google.com> |
Refactoring widget - Moved to com.android.email.widget - Extracted nested classes to top-level classes - Some small clean-ups. - WidgetProvider and WidgetProvider$WidgetService are left in the original package to keep compatibility with honeycomb (3.0) release. This CL is supposed to be pure-refactoring. There should be no functionality changes. Change-Id: I37acaa24b6b488724750c0f33374b31fcc433f11
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
6c5ee59c4fcd5cb2992a53234245df8faeaf8a5d |
|
26-Jan-2011 |
Todd Kennedy <toddke@google.com> |
Add "tap to configure" text to widget If there are no email accounts defined, the widget should show a single string that allows the user to create a new account. Whenever there are changes to the defined accounts, the widget(s) will update their headers to ensure they are only displaying valid information. bug 3296594 Change-Id: I156c20cfc90692174297a2aededd85775e0ea196
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
c50b6f685ba26a38b8110f6ca0115b12f84d643c |
|
14-Jan-2011 |
Makoto Onuki <omakoto@google.com> |
Use broadcast to detect system account update. Instead of AccountsUpdatedListener. Bug 3211657 Change-Id: I1e60092fc06fe80b9914ff7264c24fcbfa950745
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
a2269e84c6134bfd3506e5489c7ccfd60c32d41f |
|
30-Dec-2010 |
Andy Stadler <stadler@android.com> |
Remove disk access from DeviceAdminReceiver callbacks * DeviceAdminReceiver is actually a BroadcastReceiver, must follow guidelines to prevent ANR or early process kill. * Remove all uses of AsyncTask from DeviceAdminReceiver * Pass all calls through EmailBroadcastProcessorService * Minor restructuring of EmailBroadcastProcessorService to support this use. Change-Id: Ic6257ea5eff1bd466a736e0f93cb89b1cf8aa73e
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
2959a7e073c87e2fa5fab42ec543b352a91cf187 |
|
23-Dec-2010 |
Andy Stadler <stadler@google.com> |
Fix ANRs from Email.setServicesEnabled() * Create sync & async versions * Rename all callsites so sync is very apparent * Fix callsites appropriately * Clean up interaction between reconciler and setServicesEnabled Bug: 3133770 Bug: 3134677 Change-Id: Iefbc7814d9aa390baea6345e450e2a4768bf0a9a
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
4f71ade96e9dda5b2ffaac4e563de915f2be4234 |
|
28-Oct-2010 |
Andrew Stadler <stadler@android.com> |
Remove BOOT_COMPLETED log. Change-Id: I3eb06076ad61dab0f38e32e736e7dbbcf8dde065
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
57f125a01b5fbb5860b144b3057153a50d07ddd1 |
|
26-Aug-2010 |
Andrew Stadler <stadler@android.com> |
Move debug settings from own activity to setting fragment * Add DebugFragment and incorporate it into AccountSettingsXL * Tap "Email preferences" 10 times in a row to enable debug settings. (Or type D E B U G works as well.) * Point broadcast receiver (*#*#EMAIL#*#*) to AccountSettingsXL * Remove old debug launchers in AccountFolderList * Remove old Debug activity Change-Id: Ib289c42878a07c23f815654ce4570c1399aa49de
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
42e3f10a9575e277ba6f121e6cac56ddb02fda12 |
|
01-Jul-2010 |
Makoto Onuki <omakoto@google.com> |
Use "*#*#36245#*#*" to activate the debug screen. Dial *#*#36245#*#* on the dialer to activate the debug screen. "36245" = "email" It's useful when - There's no keyboard. - There's no account set up yet. (You can do it by entering the special username/password on new account screen, but that's a bit of a pain.) It's also easier to tell to people. Also, removed "sensitive logging", which should never be used. Change-Id: Id692f8b216f2d85abe1880c452d2067f170dac83
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|
898283b6fa4f141d5c2a0831b96b19de11d587b3 |
|
28-May-2010 |
Makoto Onuki <omakoto@google.com> |
Fix ANR in one time initializer and unify BroadccastReceivers. - Merged all three BroadcastReceivers into one. (Changed class name because old ones may have been disabled.) - Use IntentService to perform the tasks in a worker thread. Note the new receiver will never be disabled. We always need to start exchange.SyncManager. Bug 2722155 Bug 2416929 Change-Id: I8241880fc1ee38d85dcdca7e1d46fc2f6b2d375b
/packages/apps/Email/src/com/android/email/service/EmailBroadcastProcessorService.java
|