History log of /packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
bb68c13afa630cae058eb40d3ce68644f3f3c8b9 07-Sep-2014 Paul Westbrook <pwestbro@google.com> Changes to support smaller email tombstone apk size

This reduces the tombstone down by 100K

A follow-on cl will remove the unused resources from the tombstone build

Bug: 17414014
Change-Id: I5d38811b17a5273ec726e750ab123e10e36cee04
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
51c653646d14d841fbe527aee9fab7a1886338f8 28-Aug-2014 Martin Hibdon <mhibdon@google.com> Put debug screen back into settings

There is still work to be done here:
* The debug setting is not persisted in Exchange, so if
the exchange service is killed, when it restarts the logging
will not be active.
* Nothing in Exchange actually does any additional logging
if this logging is turned on.

Change-Id: Ic578e6956f70dd47fba9b2895385312f71c47abf
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
50591a7be4fe59cc7063acddcb1f61833ba2f100 14-Aug-2014 James Lemieux <jplemieux@google.com> End of Life screen for Email

b/16843301

This introduces a new build target: EmailGoogleTombstone.
Building with a tapas line that includes that target will
produce EmailGoogleTombstone.apk. The apk includes the
EmailProvider and AttachmentProvider (for migration to
Gmail) and an activity that explains to the user where to
find their email data.

Change-Id: Ib8192b46d9017e04f5c99f5c8e509531198eec07
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
7e75afadb152659e3a237c62e4d95cefb60e228d 11-Jul-2014 Ray Chen <raychen@google.com> com.android.mail.providers.Account contructors are no longer public
and clients need to use Account.builder().buildFrom(...) instead.

Change-Id: I7559540458ae549c399effc59392930ec914ffcc
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
50260283001d23e1988f369e84514f2c43732ec5 23-Jun-2014 Régis Décamps <regisd@google.com> Refactor how the warm welcome is triggered.

MailActivityEmail doesn't need to implement WelcomeTourCompletionListener anymore.

b/15705426

Change-Id: I911eb8eac6e6759448065e68e85d6f347693ea82
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
3d16e5d4b994d92db51962c8c461c53bee04309f 25-Jun-2014 Anthony Lee <anthonylee@google.com> Move over to the new AttachmentService.

Change-Id: I4a687b003884ea6a92a755fcbf394001bfc96a38
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
b71fe22a93a3b2e0ddae0e18bb3986671657fe08 30-May-2014 Greg Bullock <gregbullock@google.com> Null implemention of the getWelcomeTourFragment method for Email.

Change-Id: I6e2e0917b70953f58aeed019066db118ca46fe70
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
5bbbe11596a38390320d6589cc5f69d5607ffe16 17-Jan-2014 Tony Mantler <nicoya@google.com> Remove obsolete debugging code

Change-Id: I522a5a67ac0f4cf54834e03fd1ff1fe7f580c943
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
b9d071a493bae6caa22bf9c46abcdae26c7ca9f7 13-Dec-2013 Tony Mantler <nicoya@google.com> Null check cursor

Mock provider is returning null on this query in testing.

b/12085240

Change-Id: Ifa5edc03707a6050acdbd5184a44409d46004e7e
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
5ec2108cf0287035e1f4614c789a4e9079d15576 22-Nov-2013 Tony Mantler <nicoya@google.com> Clean up dead/weird code.

Change-Id: I27da217fc919bee6804b12ee8ec5f5a78b1ee410
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
02f0b1eee8f5de651ad5f0289146f88fea99bce0 27-Jul-2013 Yu Ping Hu <yph@google.com> Remove MailService.

Change-Id: Ibffd0c9fb0eed4822dff28d1577fb455736cffd1
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
281c6365fb95037ca284dd8c910538639e8b3dcb 11-Jul-2013 Scott Kennedy <skennedy@google.com> Add a new FolderUri

This will allow us to add query parameters such that Uris will still
appear to be equal, regardless of differences in the parameters.

Bug: 9780067
Change-Id: I483d009fe3681ec3d4323b3ca95dff8ca9f4ffde
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
560bfadc3151f7a06f3b06e9a6c92cfa534c63ec 26-May-2013 Scott Kennedy <skennedy@google.com> Unify LogTag

There is now only one LogTag class. The static initializer of
GmailApplication (existing) and EmailApplication (new) will now set
the log tag to "Gmail" and "Email", respectively. Up until that code
is run, it will be "UnifiedEmail".

"setprop log.tag.Gmail VERBOSE" (or .Email) will trigger all logs to
be printed as long as they go through LogUtils, regardless of what tag
is used by that individual log. This lets us still turn on logging
everywhere in one command, but also lets us use more descriptive tags
(like the class name).

And since we no longer have three com.android.mail.utils.LogTag
classes, builds will be much easier.

Also, we now use LogUtils everywhere.

Change-Id: I55f1c7a66ce50ead54877a13e40256422a56dc39
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
17d5bbf768c27ac7782b155e2ab25bcd480f5dcf 05-Apr-2013 Yu Ping Hu <yph@google.com> Improve mailbox sync and load more.

- Update syncTime for IMAP and POP whenever we sync.
- Change load more to simply include the delta in the RPC
rather than using the visibleLimit column.
- Add a query to get the message count for a Mailbox.
- Refactor code for updating totalCount and determining
the new message count when syncing.
- Remove dead code from Mailbox.
- Remove uses of visibleLimit from code.

Note that visibleLimit and messageCount in Mailbox table are
no longer useful and will be removed in a later change.

Bug: 8579767
Bug: 8523146
Change-Id: Ieb67e3b6f1c82c3b21b972c5a1e557cd75dc21db
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
391a7fc0e99457308b6f6bd9444c8aba94b0b7b1 04-Apr-2013 Paul Westbrook <pwestbro@google.com> Support legacy shortcuts

We need to support shortcuts that were created with previous versions
of Email

Bug: 8530220
Change-Id: I9e2a44b561f5617ffa954af37a9e78a95400f7dc
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
b34608228f0b55e401415b67b8150ca9e00cee7d 11-Dec-2012 Scott Kennedy <skennedy@google.com> Move notifications to UnifiedEmail

This involves redoing the persistence model, to split general,
account, and folder settings into separate SharedPreference stores.

It also requires some preferences to be moved into UnifiedEmail.

Depends on Ibe2e3f93ec164370535ffc5f5b2409544cc8d36d (UnifiedEmail)

Change-Id: Ie6ec389b5b5d2e7ab1b299d0877811ae716526e2
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
92561ecd56d26712df68c83a084bc09fbf07cc8e 11-Sep-2012 Marc Blank <mblank@google.com> Make sure EmailContent is initialized

Bug: 7142845
Change-Id: I4299ab2627a4427ff8e96958b2c27f2f827e7794
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java
c5afb16430a145f20d7c887e45f47b38687054da 28-Jun-2012 Marc Blank <mblank@google.com> Add a bunch of stuff missed earlier

Change-Id: I7f707446a963912fe5786dacb5569e68db572d1c
/packages/apps/Email/src/com/android/email2/ui/MailActivityEmail.java