From 3575a400090a0863a5978d9550d171e0525d3b13 Mon Sep 17 00:00:00 2001 From: Anthony Hugh Date: Mon, 26 Oct 2015 17:47:05 -0700 Subject: 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 --- core/java/android/content/Intent.java | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'core/java/android/content') 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 */ -- cgit v1.1