summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrianDC <radian.dc@gmail.com>2015-11-19 21:57:37 +0100
committerArne Coucheron <arco68@gmail.com>2017-12-16 06:52:23 +0100
commit8db8a68211484b6bbd8de50ead2fb21782c6f95d (patch)
tree67480ca9bcc4ea34ef84fc305886c30efc213bc9
parentfc1e7349b1f20228fdedc829e7402347817091be (diff)
downloadandroid_packages_apps_Gallery2-8db8a68211484b6bbd8de50ead2fb21782c6f95d.tar.gz
android_packages_apps_Gallery2-8db8a68211484b6bbd8de50ead2fb21782c6f95d.tar.bz2
android_packages_apps_Gallery2-8db8a68211484b6bbd8de50ead2fb21782c6f95d.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.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 535805df0..159798009 100755
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -54,6 +54,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"
@@ -251,18 +257,12 @@
</intent-filter>
</activity>
- <permission android:name="com.android.gallery3d.filtershow.permission.READ"
- android:protectionLevel="signature" />
-
- <permission android:name="com.android.gallery3d.filtershow.permission.WRITE"
- android:protectionLevel="signature" />
-
<provider
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"