summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'AndroidManifest.xml')
-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"