Merge "Make MATCH_ANY_USER system api"

This commit is contained in:
TreeHugger Robot
2016-12-09 22:36:35 +00:00
committed by Android (Google) Code Review
2 changed files with 3 additions and 1 deletions

View File

@@ -10535,6 +10535,7 @@ package android.content.pm {
field public static final int INTENT_FILTER_VERIFICATION_SUCCESS = 1; // 0x1
field public static final int MASK_PERMISSION_FLAGS = 255; // 0xff
field public static final int MATCH_ALL = 131072; // 0x20000
field public static final int MATCH_ANY_USER = 4194304; // 0x400000
field public static final int MATCH_DEFAULT_ONLY = 65536; // 0x10000
field public static final int MATCH_DIRECT_BOOT_AWARE = 524288; // 0x80000
field public static final int MATCH_DIRECT_BOOT_UNAWARE = 262144; // 0x40000

View File

@@ -436,9 +436,10 @@ public abstract class PackageManager {
/**
* Allows querying of packages installed for any user, not just the specific one. This flag
* is only meant for use by apps that have INTERACT_ACROSS_USERS_FULL permission.
* is only meant for use by apps that have INTERACT_ACROSS_USERS permission.
* @hide
*/
@SystemApi
public static final int MATCH_ANY_USER = 0x00400000;
/**