Merge "[Safety Labels] Add new intent action for Data Sharing updates page"
This commit is contained in:
committed by
Android (Google) Code Review
commit
2445d0816b
@@ -3291,6 +3291,7 @@ package android.content {
|
||||
field public static final String ACTION_QUERY_PACKAGE_RESTART = "android.intent.action.QUERY_PACKAGE_RESTART";
|
||||
field public static final String ACTION_RESOLVE_INSTANT_APP_PACKAGE = "android.intent.action.RESOLVE_INSTANT_APP_PACKAGE";
|
||||
field @RequiresPermission(android.Manifest.permission.REVIEW_ACCESSIBILITY_SERVICES) public static final String ACTION_REVIEW_ACCESSIBILITY_SERVICES = "android.intent.action.REVIEW_ACCESSIBILITY_SERVICES";
|
||||
field @RequiresPermission(android.Manifest.permission.GRANT_RUNTIME_PERMISSIONS) public static final String ACTION_REVIEW_APP_DATA_SHARING_UPDATES = "android.intent.action.REVIEW_APP_DATA_SHARING_UPDATES";
|
||||
field @RequiresPermission(android.Manifest.permission.GRANT_RUNTIME_PERMISSIONS) public static final String ACTION_REVIEW_ONGOING_PERMISSION_USAGE = "android.intent.action.REVIEW_ONGOING_PERMISSION_USAGE";
|
||||
field public static final String ACTION_REVIEW_PERMISSIONS = "android.intent.action.REVIEW_PERMISSIONS";
|
||||
field @RequiresPermission(android.Manifest.permission.GRANT_RUNTIME_PERMISSIONS) public static final String ACTION_REVIEW_PERMISSION_HISTORY = "android.intent.action.REVIEW_PERMISSION_HISTORY";
|
||||
|
||||
@@ -2422,6 +2422,30 @@ public class Intent implements Parcelable, Cloneable {
|
||||
public static final String ACTION_SAFETY_CENTER =
|
||||
"android.intent.action.SAFETY_CENTER";
|
||||
|
||||
/**
|
||||
* Activity action: Launch the UI to view recent updates that installed apps have made to their
|
||||
* data sharing policy in their safety labels.
|
||||
*
|
||||
* <p>
|
||||
* Input: Nothing.
|
||||
* </p>
|
||||
* <p>
|
||||
* Output: Nothing.
|
||||
* </p>
|
||||
*
|
||||
* <p class="note">
|
||||
* This intent action requires the {@link android.Manifest.permission#GRANT_RUNTIME_PERMISSIONS}
|
||||
* permission.
|
||||
* </p>
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
@SystemApi
|
||||
@RequiresPermission(Manifest.permission.GRANT_RUNTIME_PERMISSIONS)
|
||||
@SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
|
||||
public static final String ACTION_REVIEW_APP_DATA_SHARING_UPDATES =
|
||||
"android.intent.action.REVIEW_APP_DATA_SHARING_UPDATES";
|
||||
|
||||
// ---------------------------------------------------------------------
|
||||
// ---------------------------------------------------------------------
|
||||
// Standard intent broadcast actions (see action variable).
|
||||
|
||||
Reference in New Issue
Block a user