aboutsummaryrefslogtreecommitdiffstats
path: root/java/AndroidManifest.xml
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-03-28 18:59:19 +0900
committerJean Chalard <jchalard@google.com>2013-04-01 17:37:22 +0900
commit76d5f512f99700a963aa20a02590833e37221bff (patch)
treeef3db31c596f015a3e2388a718e5bf07c56d85d8 /java/AndroidManifest.xml
parentc1dec87a76565c5dfa223c7d4d5f10a345ab3799 (diff)
downloadlatinime-76d5f512f99700a963aa20a02590833e37221bff.tar.gz
latinime-76d5f512f99700a963aa20a02590833e37221bff.tar.xz
latinime-76d5f512f99700a963aa20a02590833e37221bff.zip
Ask the client to make itself known when it's not
Upon invoking the settings of the dictionary pack with an unknown client, we now launch an intent to ask the client to make itself known. This change also includes the code that receives this intent and acts upon it. Bug: 8492879 Change-Id: I2c6496dea845646961ecafcf64e282cb93ee91dc
Diffstat (limited to 'java/AndroidManifest.xml')
-rw-r--r--java/AndroidManifest.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/java/AndroidManifest.xml b/java/AndroidManifest.xml
index 80cd08569..17d11c01d 100644
--- a/java/AndroidManifest.xml
+++ b/java/AndroidManifest.xml
@@ -95,6 +95,12 @@
</intent-filter>
</receiver>
+ <receiver android:name=".DictionaryPackInstallBroadcastReceiver">
+ <intent-filter>
+ <action android:name="com.android.inputmethod.dictionarypack.UNKNOWN_CLIENT" />
+ </intent-filter>
+ </receiver>
+
<provider android:name="com.android.inputmethod.dictionarypack.DictionaryProvider"
android:grantUriPermissions="true"
android:exported="false"