summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2012-07-28 15:58:05 -0700
committerNick Kralevich <nnk@google.com>2012-07-28 15:58:05 -0700
commitc387029cf67358eea21f9fd60e6cac60049839b7 (patch)
tree2708165bf956d1716bc125d256f5aaeec41bef5c
parentccfedce270d66beb36c685cb496245c699917832 (diff)
downloadandroid_packages_providers_UserDictionaryProvider-c387029cf67358eea21f9fd60e6cac60049839b7.tar.gz
android_packages_providers_UserDictionaryProvider-c387029cf67358eea21f9fd60e6cac60049839b7.tar.bz2
android_packages_providers_UserDictionaryProvider-c387029cf67358eea21f9fd60e6cac60049839b7.zip
Explicitly export content providers
In a future version of Android, the default value for <provider android:exported> will change from true to false. Explicitly set android:exported="true" Bug: 3306452 Change-Id: Ic569a8b6d8d123b6606afe0e01cf506211cc6694
-rw-r--r--AndroidManifest.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 3a37acf..2e78f78 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -26,6 +26,7 @@
>
<provider android:name="UserDictionaryProvider" android:authorities="user_dictionary"
android:syncable="false" android:multiprocess="false"
+ android:exported="true"
android:readPermission="android.permission.READ_USER_DICTIONARY"
android:writePermission="android.permission.WRITE_USER_DICTIONARY" />
</application>