summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrianDC <radian.dc@gmail.com>2015-11-19 21:57:37 +0100
committerAdrianDC <radian.dc@gmail.com>2015-11-19 21:57:37 +0100
commitcf90a15bee6eb0ebe04d991c2bcd66f98d69daac (patch)
treeddbdc2222cd761974f306744912eb643e643bcba
parentae4e264b6378730bbe7c09925cc96fe1e7c106c2 (diff)
downloadandroid_packages_apps_Gallery2-cf90a15bee6eb0ebe04d991c2bcd66f98d69daac.tar.gz
android_packages_apps_Gallery2-cf90a15bee6eb0ebe04d991c2bcd66f98d69daac.tar.bz2
android_packages_apps_Gallery2-cf90a15bee6eb0ebe04d991c2bcd66f98d69daac.zip
Gallery2: Properly declare the own permissions
Change-Id: I0613752feb8641eb87ed211d52556316f379f72c Signed-off-by: AdrianDC <radian.dc@gmail.com>
-rw-r--r--AndroidManifest.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 937a46199..9575c3c2d 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -60,6 +60,12 @@
android:normalScreens="true" android:largeScreens="true"
android:anyDensity="true" />
+ <permission android:name="com.android.gallery3d.filtershow.permission.READ"
+ android:protectionLevel="signature" />
+
+ <permission android:name="com.android.gallery3d.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:theme="@style/Theme.Gallery"
@@ -275,12 +281,6 @@
</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"