Browser: Fix force close when copy link URL of new tab in bookmarks
When long press the bookmark(Most visited page) and click
"Copy link URL" menu, SecurityException happened due to
HomeProvider does not allow granting of Uri permissions.
set android:grantUriPermissions true for HomeProvider.
CRs-Fixed: 565421
Change-Id: I9a9293835e592303163fb135b5118558dd3f903f
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 93edc61..4441364 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -284,6 +284,7 @@
<provider
android:name=".homepages.HomeProvider"
android:authorities="com.android.browser.home"
+ android:grantUriPermissions="true"
android:readPermission="com.android.browser.permission.READ_HISTORY_BOOKMARKS"
android:exported="false" />