summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSudheer Shanka <sudheersai@google.com>2017-12-18 12:11:07 -0800
committerandroid-build-team Robot <android-build-team-robot@google.com>2017-12-18 21:05:29 +0000
commitf7b578f362281bc11d05dfb168e42feb3b3810f1 (patch)
treed7164ac1832bf744a5dd20f801fb90229b94a290
parent4f556e03c830e60d3ef6d1c0cb1b6a7fb57e41d9 (diff)
downloadPartnerBookmarksProvider-f7b578f362281bc11d05dfb168e42feb3b3810f1.tar.gz
Set android:exported=true for PartnerBookmarksProvider.
Providers are exported by default in apps targeting anything below sdk 17. com.android.providers.partnerbookmarks package used to target sdk 14 but not anymore, so if this needs to used by other apps, the provider needs to be explicitly exported. Bug: 70776982 Test: manual Change-Id: I9176fd0c1df45cbd16b97dddc5dda57ca89b8783 (cherry picked from commit ef814aa2329f69d83af0e22bf0c542448e4feac1)
-rw-r--r--AndroidManifest.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 719070c..cdc215c 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -20,6 +20,7 @@
<!-- We add an application tag here just to indicate the authorities -->
<application>
<provider android:name="PartnerBookmarksProvider"
- android:authorities="com.android.partnerbookmarks" />
+ android:authorities="com.android.partnerbookmarks"
+ android:exported="true" />
</application>
</manifest>