diff options
| author | Ricardo Cerqueira <ricardo@cyngn.com> | 2014-11-10 02:45:50 +0000 |
|---|---|---|
| committer | Steve Kondik <steve@cyngn.com> | 2015-10-18 14:02:20 -0700 |
| commit | 7fbf9f957cf1d27de60f1b06e6c14e07ea7d63cc (patch) | |
| tree | 29e925a920cf1aafcbf88e6fe035c6534f89b593 /emailcommon | |
| parent | 11f225299457f1c1a5ce2f5b8bdbcbf71a304c7d (diff) | |
| download | android_packages_apps_Email-7fbf9f957cf1d27de60f1b06e6c14e07ea7d63cc.tar.gz android_packages_apps_Email-7fbf9f957cf1d27de60f1b06e6c14e07ea7d63cc.tar.bz2 android_packages_apps_Email-7fbf9f957cf1d27de60f1b06e6c14e07ea7d63cc.zip | |
DBHelper: Support upgrades from CM11
Add the new columns when coming from v126, add the old ones when
coming from any other value (or creating) so that they're there
when the feature gets reintroduced
Change-Id: I48ec042b30afbcefd43bdad0042147b6b0d2249f
Diffstat (limited to 'emailcommon')
| -rwxr-xr-x | emailcommon/src/com/android/emailcommon/provider/EmailContent.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/emailcommon/src/com/android/emailcommon/provider/EmailContent.java b/emailcommon/src/com/android/emailcommon/provider/EmailContent.java index 28826fd85..745a161e0 100755 --- a/emailcommon/src/com/android/emailcommon/provider/EmailContent.java +++ b/emailcommon/src/com/android/emailcommon/provider/EmailContent.java @@ -1721,6 +1721,8 @@ public abstract class EmailContent { public static final String MAX_ATTACHMENT_SIZE = "maxAttachmentSize"; // Current duration of the Exchange ping public static final String PING_DURATION = "pingDuration"; + // Automatically fetch pop3 attachments + public static final String AUTO_FETCH_ATTACHMENTS = "autoFetchAttachments"; } public interface QuickResponseColumns extends BaseColumns { |
