diff options
author | 2024-02-01 15:54:42 +0000 | |
---|---|---|
committer | 2024-02-05 11:23:15 +0000 | |
commit | aad770516b725e792e2bbe570b9ec6fc859bb688 (patch) | |
tree | 25beeb6a1f6b3e73f9793533dd9172f1fc010c3b | |
parent | c11018a7fb0386519404294e1a3397ff368b3b60 (diff) |
Add ACCESS_HIDDEN_PROFILES_FULL to the permission manifest
Bug: 321988638
Change-Id: I115dec033c085b44ecd5b8abc22239625623ac23
-rw-r--r-- | tests/cts/permissionpolicy/res/raw/android_manifest.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/cts/permissionpolicy/res/raw/android_manifest.xml b/tests/cts/permissionpolicy/res/raw/android_manifest.xml index cb02e0536..7ee20f918 100644 --- a/tests/cts/permissionpolicy/res/raw/android_manifest.xml +++ b/tests/cts/permissionpolicy/res/raw/android_manifest.xml @@ -3088,6 +3088,13 @@ android:description="@string/permdesc_accessHiddenProfile" android:protectionLevel="normal" /> + <!-- @SystemApi @hide Allows privileged applications to get details about hidden profile + users. + @FlaggedApi("android.multiuser.flags.enable_permission_to_access_hidden_profiles") --> + <permission + android:name="android.permission.ACCESS_HIDDEN_PROFILES_FULL" + android:protectionLevel="signature|privileged" /> + <!-- @SystemApi Allows configuring apps to have the INTERACT_ACROSS_PROFILES permission so that they can interact across profiles in the same profile group. @hide --> |