summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrianDC <radian.dc@gmail.com>2015-11-19 21:57:37 +0100
committerArne Coucheron <arco68@gmail.com>2017-03-10 07:20:41 +0100
commite2c405d167286a3899cc71caf8dd120ae7d67180 (patch)
tree458037290c458a714549af1e42f5393175f90fe9
parent31186d480d2c957cccf271fde8e2354268f2a722 (diff)
downloadandroid_packages_apps_Gallery2-e2c405d167286a3899cc71caf8dd120ae7d67180.tar.gz
android_packages_apps_Gallery2-e2c405d167286a3899cc71caf8dd120ae7d67180.tar.bz2
android_packages_apps_Gallery2-e2c405d167286a3899cc71caf8dd120ae7d67180.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 453a4c1d3..e4208eb30 100755
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -57,6 +57,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"
@@ -254,18 +260,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"