summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2012-07-30 13:13:24 -0700
committerNick Kralevich <nnk@google.com>2012-07-30 13:13:24 -0700
commita5578e49449f22d00631a93c2b1a9d2cc509c0f1 (patch)
tree8842652dcdc79cedd6e912a4b62ce21623d30643
parent40d30609f7be31197732ae5e7d63839a743f6246 (diff)
downloadApplicationsProvider-a5578e49449f22d00631a93c2b1a9d2cc509c0f1.tar.gz
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: I95e2d73db1c7f0807358b6ccfc18f1449e4c725f
-rw-r--r--AndroidManifest.xml1
1 files changed, 1 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 4e4bfa2..d77c335 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -7,6 +7,7 @@
<application android:process="android.process.acore" android:label="@string/app_label">
<provider android:name="ApplicationsProvider" android:authorities="applications"
+ android:exported="true"
android:syncable="false" android:multiprocess="false" />
<activity android:name="ApplicationLauncher"