Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e2c405d1 authored by AdrianDC's avatar AdrianDC Committed by Arne Coucheron
Browse files

Gallery2: Properly declare the own permissions



* Rename the permissions because they conflict with Google+ app

Change-Id: I0613752feb8641eb87ed211d52556316f379f72c
Signed-off-by: default avatarAdrianDC <radian.dc@gmail.com>
parent 31186d48
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -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"