summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2012-07-28 14:17:24 -0700
committerNick Kralevich <nnk@google.com>2012-07-28 14:17:24 -0700
commit127a8b8b54e58b9eb41f6d5cb08491ab9f78246f (patch)
treee9e415de4908ce4d34f5a47e6ef12196d4827ba5 /AndroidManifest.xml
parenta5dc519dfa9982e79a38bd215be7d39c3a8ca751 (diff)
downloadpackages_providers_ContactsProvider-127a8b8b54e58b9eb41f6d5cb08491ab9f78246f.zip
packages_providers_ContactsProvider-127a8b8b54e58b9eb41f6d5cb08491ab9f78246f.tar.gz
packages_providers_ContactsProvider-127a8b8b54e58b9eb41f6d5cb08491ab9f78246f.tar.bz2
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: I3e75e2ee53d42b2aaad601bcff8f6b27bbe3d58f
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml3
1 files changed, 3 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index f2aeac9..4370a42 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -33,6 +33,7 @@
android:authorities="contacts;com.android.contacts"
android:label="@string/provider_label"
android:multiprocess="false"
+ android:exported="true"
android:readPermission="android.permission.READ_CONTACTS"
android:writePermission="android.permission.WRITE_CONTACTS">
<path-permission
@@ -50,6 +51,7 @@
<provider android:name="CallLogProvider"
android:authorities="call_log"
android:syncable="false" android:multiprocess="false"
+ android:exported="true"
android:readPermission="android.permission.READ_CALL_LOG"
android:writePermission="android.permission.WRITE_CALL_LOG">
</provider>
@@ -57,6 +59,7 @@
<provider android:name="VoicemailContentProvider"
android:authorities="com.android.voicemail"
android:syncable="false" android:multiprocess="false"
+ android:exported="true"
android:permission="com.android.voicemail.permission.ADD_VOICEMAIL">
</provider>