Commit 171a634e authored by Torne (Richard Coles)'s avatar Torne (Richard Coles) Committed by Commit Bot

android: remove obsolete permission group.

The DEVELOPMENT_TOOLS permission group was removed from the framework
many releases ago, and it's recently become an error to define a
permission in a nonexistent group. Just remove the permission group from
the declaration; it only ever affected how permissions were shown in the
device permissions UI and since the group was deleted has been a no-op.

Fixed: 1143827
Change-Id: I636aa0d5f9d6f27e51aa5b5fa15b2e5a6339dda7
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2522983
Commit-Queue: Richard Coles <torne@chromium.org>
Commit-Queue: Andrew Grieve <agrieve@chromium.org>
Auto-Submit: Richard Coles <torne@chromium.org>
Reviewed-by: default avatarAndrew Grieve <agrieve@chromium.org>
Cr-Commit-Position: refs/heads/master@{#825020}
parent 70da33e0
......@@ -9,7 +9,7 @@
<permission android:name="$PACKAGE.TOS_ACKED" android:protectionLevel="signatureOrSystem"/>
<permission android:name="$PACKAGE.permission.C2D_MESSAGE" android:protectionLevel="signature"/>
<permission android:name="$PACKAGE.permission.CHILD_SERVICE" android:protectionLevel="signature"/>
<permission android:label="Debug web pages" android:name="$PACKAGE.permission.DEBUG" android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS" android:protectionLevel="signature"/>
<permission android:label="Debug web pages" android:name="$PACKAGE.permission.DEBUG" android:protectionLevel="signature"/>
<permission android:name="$PACKAGE.permission.READ_WRITE_BOOKMARK_FOLDERS" android:protectionLevel="signatureOrSystem"/>
<permission android:name="$PACKAGE.permission.TRANSLATE" android:protectionLevel="signature"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
......
......@@ -9,7 +9,7 @@
<permission android:name="$PACKAGE.TOS_ACKED" android:protectionLevel="signatureOrSystem"/>
<permission android:name="$PACKAGE.permission.C2D_MESSAGE" android:protectionLevel="signature"/>
<permission android:name="$PACKAGE.permission.CHILD_SERVICE" android:protectionLevel="signature"/>
<permission android:label="Debug web pages" android:name="$PACKAGE.permission.DEBUG" android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS" android:protectionLevel="signature"/>
<permission android:label="Debug web pages" android:name="$PACKAGE.permission.DEBUG" android:protectionLevel="signature"/>
<permission android:name="$PACKAGE.permission.READ_WRITE_BOOKMARK_FOLDERS" android:protectionLevel="signatureOrSystem"/>
<permission android:name="$PACKAGE.permission.TRANSLATE" android:protectionLevel="signature"/>
<uses-feature android:name="android.hardware.camera" android:required="false"/>
......
......@@ -93,7 +93,6 @@ by a child template that "extends" this file.
android:protectionLevel="signature" />
<permission android:name="{{ manifest_package }}.permission.DEBUG"
android:label="Debug web pages"
android:permissionGroup="android.permission-group.DEVELOPMENT_TOOLS"
android:protectionLevel="signature" />
<permission android:name="{{ manifest_package }}.permission.TRANSLATE"
android:protectionLevel="signature" />
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment