diff options
author | 2015-03-24 14:56:54 -0700 | |
---|---|---|
committer | 2015-03-24 14:56:54 -0700 | |
commit | 3bc3bc7971f15438732933cfac0db6e766e6a3e9 (patch) | |
tree | 0bdd6a1041bcd982424626bc0ff6018de1c09dc8 /java-overridable/src/com/android | |
parent | e1b91d4138b4f5b7e83d09d506e0be4a6b78467b (diff) | |
download | latinime-3bc3bc7971f15438732933cfac0db6e766e6a3e9.tar.gz latinime-3bc3bc7971f15438732933cfac0db6e766e6a3e9.tar.xz latinime-3bc3bc7971f15438732933cfac0db6e766e6a3e9.zip |
Force download the dictionaries after the apk package is updated.
- Also display the notification when the dictionaries are auto updated
Bug: 19808828
Change-Id: If5c4efb73d8bb554d812afcf7deafec3ac40a462
Diffstat (limited to 'java-overridable/src/com/android')
-rw-r--r-- | java-overridable/src/com/android/inputmethod/dictionarypack/DictionaryPackConstants.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/java-overridable/src/com/android/inputmethod/dictionarypack/DictionaryPackConstants.java b/java-overridable/src/com/android/inputmethod/dictionarypack/DictionaryPackConstants.java index df0e3f0e1..13caea403 100644 --- a/java-overridable/src/com/android/inputmethod/dictionarypack/DictionaryPackConstants.java +++ b/java-overridable/src/com/android/inputmethod/dictionarypack/DictionaryPackConstants.java @@ -62,4 +62,11 @@ public class DictionaryPackConstants { */ public static final String UPDATE_NOW_INTENT_ACTION = DICTIONARY_DOMAIN + ".UPDATE_NOW"; + + /** + * The intent action to inform the dictionary provider to initialize the db + * and update now. + */ + public static final String INIT_AND_UPDATE_NOW_INTENT_ACTION = DICTIONARY_DOMAIN + + ".INIT_AND_UPDATE_NOW"; } |