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

Commit b2649eaf authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Expose MATCH_HIDDEN_UNTIL_INSTALLED_COMPONENTS as system API" am:...

Merge "Expose MATCH_HIDDEN_UNTIL_INSTALLED_COMPONENTS as system API" am: 7db161b9 am: 156a854c am: b5b44679

Change-Id: If5ac1c1528ea6323a83d4fee6f01acb1215b5371
parents 262a2c59 b5b44679
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2332,6 +2332,7 @@ package android.content.pm {
    field @Deprecated public static final int MASK_PERMISSION_FLAGS = 255; // 0xff
    field public static final int MATCH_ANY_USER = 4194304; // 0x400000
    field public static final int MATCH_FACTORY_ONLY = 2097152; // 0x200000
    field public static final int MATCH_HIDDEN_UNTIL_INSTALLED_COMPONENTS = 536870912; // 0x20000000
    field public static final int MATCH_INSTANT = 8388608; // 0x800000
    field public static final int MODULE_APEX_NAME = 1; // 0x1
    field public static final int RESTRICTION_HIDE_FROM_SUGGESTIONS = 1; // 0x1
+2 −1
Original line number Diff line number Diff line
@@ -549,9 +549,10 @@ public abstract class PackageManager {
    public static final int MATCH_DEBUG_TRIAGED_MISSING = MATCH_DIRECT_BOOT_AUTO;

    /**
     * Internal flag used to indicate that a package is a hidden system app.
     * Internal {@link PackageInfo} flag used to indicate that a package is a hidden system app.
     * @hide
     */
    @SystemApi
    public static final int MATCH_HIDDEN_UNTIL_INSTALLED_COMPONENTS =  0x20000000;

    /**