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

Commit 5fe60ddc authored by Rhed Jao's avatar Rhed Jao Committed by Android (Google) Code Review
Browse files

Merge "Accessibility shortcut improvement (1/n)"

parents 0a3c4f2f a22da1b2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ package android {
  public static final class Manifest.permission {
    ctor public Manifest.permission();
    field public static final String ACCEPT_HANDOVER = "android.permission.ACCEPT_HANDOVER";
    field public static final String ACCESSIBILITY_SHORTCUT_TARGET = "android.permission.ACCESSIBILITY_SHORTCUT_TARGET";
    field public static final String ACCESS_BACKGROUND_LOCATION = "android.permission.ACCESS_BACKGROUND_LOCATION";
    field public static final String ACCESS_CHECKIN_PROPERTIES = "android.permission.ACCESS_CHECKIN_PROPERTIES";
    field public static final String ACCESS_COARSE_LOCATION = "android.permission.ACCESS_COARSE_LOCATION";
+13 −0
Original line number Diff line number Diff line
@@ -2552,6 +2552,19 @@
        android:label="@string/permlab_readSyncStats"
        android:protectionLevel="normal" />

    <!-- ==================================================== -->
    <!-- Permissions related to accessibility                 -->
    <!-- ==================================================== -->
    <eat-comment />

    <!-- Allows applications to define the accessibility shortcut target.
         <p>Protection level: normal
    -->
    <permission android:name="android.permission.ACCESSIBILITY_SHORTCUT_TARGET"
                android:description="@string/permdesc_accessibilityShortcutTarget"
                android:label="@string/permlab_accessibilityShortcutTarget"
                android:protectionLevel="normal" />

    <!-- ============================================ -->
    <!-- Permissions for low-level system interaction -->
    <!-- ============================================ -->
+5 −0
Original line number Diff line number Diff line
@@ -1745,6 +1745,11 @@
    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. -->
    <string name="permdesc_startViewPermissionUsage">Allows the holder to start the permission usage for an app. Should never be needed for normal apps.</string>

    <!-- Title of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR_LIMIT=NONE] -->
    <string name="permlab_accessibilityShortcutTarget">accessibility shortcut target</string>
    <!-- Description of an application permission, listed so the user can choose whether they want to allow the application to do this. [CHAR_LIMIT=NONE] -->
    <string name="permdesc_accessibilityShortcutTarget">Allows an app to define the accessibility shortcut target.</string>

    <!-- Policy administration -->

    <!-- Title of policy access to limiting the user's password choices -->