Merge "Expose MATCH_HIDDEN_UNTIL_INSTALLED_COMPONENTS as system API"

am: 7db161b9ef

Change-Id: I7b33c06e8f581ade2a904b26188e13982aeed5bd
This commit is contained in:
Meng Wang
2020-01-23 13:23:02 -08:00
committed by android-build-merger
2 changed files with 3 additions and 1 deletions

View File

@@ -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

View File

@@ -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;
/**