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

Commit 7db161b9 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Expose MATCH_HIDDEN_UNTIL_INSTALLED_COMPONENTS as system API"

parents f2dd2fbd c9795600
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1945,6 +1945,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 RESTRICTION_HIDE_FROM_SUGGESTIONS = 1; // 0x1
    field public static final int RESTRICTION_HIDE_NOTIFICATIONS = 2; // 0x2
+2 −1
Original line number Diff line number Diff line
@@ -545,9 +545,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;

    /**