diff options
author | 2013-06-10 08:14:06 -0700 | |
---|---|---|
committer | 2013-06-11 15:04:00 -0700 | |
commit | 2c1796c22698a4d8771cc15cf3d5e7a39a9a57df (patch) | |
tree | ee7afa62d33f473f2f19697d9845ffbf6ce71eb3 /java/src/com/android/inputmethod/dictionarypack/DictionaryPackConstants.java | |
parent | 0b7cd6a0b27a3ad9c22f5fdf7f36fb8628384e17 (diff) | |
download | latinime-2c1796c22698a4d8771cc15cf3d5e7a39a9a57df.tar.gz latinime-2c1796c22698a4d8771cc15cf3d5e7a39a9a57df.tar.xz latinime-2c1796c22698a4d8771cc15cf3d5e7a39a9a57df.zip |
Make intents unique to AOSP
This is to avoid confusion if multiple IMEs are installed with
dictionary pack components
Change-Id: Ibc91951e4fdd5db13f681e4cb06197da98527bbc
Diffstat (limited to 'java/src/com/android/inputmethod/dictionarypack/DictionaryPackConstants.java')
-rw-r--r-- | java/src/com/android/inputmethod/dictionarypack/DictionaryPackConstants.java | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/dictionarypack/DictionaryPackConstants.java b/java/src/com/android/inputmethod/dictionarypack/DictionaryPackConstants.java index 69615887f..df0e3f0e1 100644 --- a/java/src/com/android/inputmethod/dictionarypack/DictionaryPackConstants.java +++ b/java/src/com/android/inputmethod/dictionarypack/DictionaryPackConstants.java @@ -28,13 +28,13 @@ public class DictionaryPackConstants { * The root domain for the dictionary pack, upon which authorities and actions will append * their own distinctive strings. */ - private static final String DICTIONARY_DOMAIN = "com.android.inputmethod.dictionarypack"; + private static final String DICTIONARY_DOMAIN = "com.android.inputmethod.dictionarypack.aosp"; /** * Authority for the ContentProvider protocol. */ // TODO: find some way to factorize this string with the one in the resources - public static final String AUTHORITY = DICTIONARY_DOMAIN + ".aosp"; + public static final String AUTHORITY = DICTIONARY_DOMAIN; /** * The action of the intent for publishing that new dictionary data is available. @@ -52,7 +52,14 @@ public class DictionaryPackConstants { */ public static final String UNKNOWN_DICTIONARY_PROVIDER_CLIENT = DICTIONARY_DOMAIN + ".UNKNOWN_CLIENT"; + // In the above intents, the name of the string extra that contains the name of the client // we want information about. public static final String DICTIONARY_PROVIDER_CLIENT_EXTRA = "client"; + + /** + * The action of the intent to tell the dictionary provider to update now. + */ + public static final String UPDATE_NOW_INTENT_ACTION = DICTIONARY_DOMAIN + + ".UPDATE_NOW"; } |