summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrianDC <radian.dc@gmail.com>2015-11-19 21:57:37 +0100
committerBruno Martins <bgcngm@gmail.com>2018-11-20 09:39:49 +0000
commitb9a826cd4d1b58cfaf631496e6ea38516ea22a8b (patch)
treefc4f28a693904359efec9ebdd625c30ad20dfd8d
parent00363d5fa3e39e11cfc57d97f2a721b7f34c937f (diff)
downloadandroid_packages_apps_Gallery2-b9a826cd4d1b58cfaf631496e6ea38516ea22a8b.tar.gz
android_packages_apps_Gallery2-b9a826cd4d1b58cfaf631496e6ea38516ea22a8b.tar.bz2
android_packages_apps_Gallery2-b9a826cd4d1b58cfaf631496e6ea38516ea22a8b.zip
Gallery2: Properly declare the own permissions
* Rename the permissions because they conflict with Google+ app Change-Id: I0613752feb8641eb87ed211d52556316f379f72c Signed-off-by: AdrianDC <radian.dc@gmail.com>
-rwxr-xr-xAndroidManifest.xml10
1 files changed, 8 insertions, 2 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index afc3a1c22..ff70feecb 100755
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -51,6 +51,12 @@
android:normalScreens="true" android:largeScreens="true"
android:anyDensity="true" />
+ <permission android:name="org.codeaurora.gallery.filtershow.permission.READ"
+ android:protectionLevel="signature" />
+
+ <permission android:name="org.codeaurora.gallery.filtershow.permission.WRITE"
+ android:protectionLevel="signature" />
+
<application android:icon="@mipmap/ic_launcher_gallery" android:label="@string/app_name"
android:name="com.android.gallery3d.app.GalleryAppImpl"
android:logo="@mipmap/ic_launcher_gallery"
@@ -252,8 +258,8 @@
android:name="com.android.gallery3d.filtershow.provider.SharedImageProvider"
android:authorities="com.android.gallery3d.filtershow.provider.SharedImageProvider"
android:grantUriPermissions="true"
- android:readPermission="com.android.gallery3d.filtershow.permission.READ"
- android:writePermission="com.android.gallery3d.filtershow.permission.WRITE" />
+ android:readPermission="org.codeaurora.gallery.filtershow.permission.READ"
+ android:writePermission="org.codeaurora.gallery.filtershow.permission.WRITE" />
<service
android:name="com.android.gallery3d.filtershow.pipeline.ProcessingService"