diff options
author | Anthony Hugh <ahugh@google.com> | 2015-10-26 17:47:05 -0700 |
---|---|---|
committer | Anthony Hugh <ahugh@google.com> | 2015-10-26 17:47:05 -0700 |
commit | 3575a400090a0863a5978d9550d171e0525d3b13 (patch) | |
tree | c3ba9b574a8cbed249c82d1c3cbf71966c972b76 /core/java/android/content | |
parent | 337495bded9c4035a922274143c1ab119e692bdd (diff) | |
download | frameworks_base-3575a400090a0863a5978d9550d171e0525d3b13.zip frameworks_base-3575a400090a0863a5978d9550d171e0525d3b13.tar.gz frameworks_base-3575a400090a0863a5978d9550d171e0525d3b13.tar.bz2 |
Add intent extra for determining if apps are system apps
This is being added to help identify system apps so that
the UI can filter on that type.
BUG: 24955055
Change-Id: Ie4be3717ce997f60eeb48a389c0f54ce5803141a
Diffstat (limited to 'core/java/android/content')
-rw-r--r-- | core/java/android/content/Intent.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index 7173591..5abf047 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -1649,6 +1649,14 @@ public class Intent implements Parcelable, Cloneable { = "android.intent.extra.GET_PERMISSIONS_APP_LABEL_LIST_RESULT"; /** + * Boolean list describing if the app is a system app for apps that have one or more runtime + * permissions. + * @hide + */ + public static final String EXTRA_GET_PERMISSIONS_IS_SYSTEM_APP_LIST_RESULT + = "android.intent.extra.GET_PERMISSIONS_IS_SYSTEM_APP_LIST_RESULT"; + + /** * Required extra to be sent with {@link #ACTION_GET_PERMISSIONS_COUNT} broadcasts. * @hide */ |