diff options
author | Nick Kralevich <nnk@google.com> | 2012-07-28 16:11:07 -0700 |
---|---|---|
committer | Nick Kralevich <nnk@google.com> | 2012-07-28 16:11:07 -0700 |
commit | ebe6559794ea9efe6fa0d7803a3f456ddf317726 (patch) | |
tree | 8396122bfade603c4ce02b924944f12eb07b864d /AndroidManifest.xml | |
parent | 062347a08f29408f188a07a78e0b064fc7218c30 (diff) | |
download | android_packages_apps_Trebuchet-ebe6559794ea9efe6fa0d7803a3f456ddf317726.tar.gz android_packages_apps_Trebuchet-ebe6559794ea9efe6fa0d7803a3f456ddf317726.tar.bz2 android_packages_apps_Trebuchet-ebe6559794ea9efe6fa0d7803a3f456ddf317726.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: I8fcce3af6949eb245ea97b6e64c191f465f0ae5f
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index de4a4340a..80c8ba6d8 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -139,6 +139,7 @@ <provider android:name="com.android.launcher2.LauncherProvider" android:authorities="com.android.launcher2.settings" + android:exported="true" android:writePermission="com.android.launcher.permission.WRITE_SETTINGS" android:readPermission="com.android.launcher.permission.READ_SETTINGS" /> |