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

Commit 8e75f689 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Update reserved permission controller flags name" into rvc-dev am:...

Merge "Update reserved permission controller flags name" into rvc-dev am: a2858902 am: 94e881fd am: be859913 am: 1128aad7

Change-Id: Id975fe599f8190d057a3c1514d5b5b7b55c241fd
parents 72266fb1 1128aad7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2222,7 +2222,7 @@ package android.content.pm {
    field public static final String FEATURE_INCREMENTAL_DELIVERY = "android.software.incremental_delivery";
    field public static final String FEATURE_REBOOT_ESCROW = "android.hardware.reboot_escrow";
    field public static final String FEATURE_TELEPHONY_CARRIERLOCK = "android.hardware.telephony.carrierlock";
    field public static final int FLAGS_PERMISSION_RESERVED_PERMISSIONCONTROLLER = -268435456; // 0xf0000000
    field public static final int FLAGS_PERMISSION_RESERVED_PERMISSION_CONTROLLER = -268435456; // 0xf0000000
    field public static final int FLAG_PERMISSION_APPLY_RESTRICTION = 16384; // 0x4000
    field public static final int FLAG_PERMISSION_AUTO_REVOKED = 131072; // 0x20000
    field public static final int FLAG_PERMISSION_GRANTED_BY_DEFAULT = 32; // 0x20
+4 −3
Original line number Diff line number Diff line
@@ -3411,12 +3411,13 @@ public abstract class PackageManager {
    public static final int FLAG_PERMISSION_AUTO_REVOKED = 1 << 17;

    /**
     * Permission flags: Reserved for use by the permission controller.
     *
     * Permission flags: Reserved for use by the permission controller. The platform and any
     * packages besides the permission controller should not assume any definition about these
     * flags.
     * @hide
     */
    @SystemApi
    public static final int FLAGS_PERMISSION_RESERVED_PERMISSIONCONTROLLER = 1 << 28 | 1 << 29
    public static final int FLAGS_PERMISSION_RESERVED_PERMISSION_CONTROLLER = 1 << 28 | 1 << 29
            | 1 << 30 | 1 << 31;

    /**