summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Nick Kralevich <nnk@google.com> 2012-07-28 12:45:05 -0700
committer Nick Kralevich <nnk@google.com> 2012-08-06 17:42:12 -0700
commit45576ccd760e4e2e63a54410803380c05e42d742 (patch)
treea73fa1e67e54917e930c1ef75183a793160808f3
parentff92aa74c133fd4abe30f97e6849e80db29af253 (diff)
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: Iffe4dca4fefc92bb9f89698f149a87c16a7ce3c5
-rw-r--r--packages/SettingsProvider/AndroidManifest.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/SettingsProvider/AndroidManifest.xml b/packages/SettingsProvider/AndroidManifest.xml
index 07194266017b..ab2feb9b2c3c 100644
--- a/packages/SettingsProvider/AndroidManifest.xml
+++ b/packages/SettingsProvider/AndroidManifest.xml
@@ -14,6 +14,7 @@
<provider android:name="SettingsProvider" android:authorities="settings"
android:multiprocess="false"
+ android:exported="true"
android:writePermission="android.permission.WRITE_SETTINGS"
android:initOrder="100" />
</application>