diff options
author | 2024-12-06 20:24:58 +0000 | |
---|---|---|
committer | 2024-12-06 20:24:58 +0000 | |
commit | a1ccb5b209bc0754390623a9c1b64d3d7657e292 (patch) | |
tree | 228422b8968c96e94de4f075595af575e7f15f21 | |
parent | eb90cd06b2852be0b24dc6a2c5569ca10de72bc3 (diff) | |
parent | 887cc8cec2c55d0eab69be585ae5e35078351826 (diff) |
Merge "Added new permission to the test to align with framework change" into main
-rw-r--r-- | tests/cts/permissionpolicy/res/raw/android_manifest.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/cts/permissionpolicy/res/raw/android_manifest.xml b/tests/cts/permissionpolicy/res/raw/android_manifest.xml index e6f53a028..36bf73b0c 100644 --- a/tests/cts/permissionpolicy/res/raw/android_manifest.xml +++ b/tests/cts/permissionpolicy/res/raw/android_manifest.xml @@ -8580,6 +8580,17 @@ android:protectionLevel="signature|privileged|vendorPrivileged" android:featureFlag="android.media.tv.flags.kids_mode_tvdb_sharing"/> + <!-- @SystemApi + @FlaggedApi("android.permission.flags.text_classifier_choice_api_enabled") + This permission is required to access the specific text classifier you need from the + TextClassificationManager. + <p>Protection level: signature|role + @hide + --> + <permission android:name="android.permission.ACCESS_TEXT_CLASSIFIER_BY_TYPE" + android:protectionLevel="signature|role" + android:featureFlag="android.permission.flags.text_classifier_choice_api_enabled"/> + <!-- This permission allows the system to receive PACKAGE_CHANGED broadcasts when the component state of a non-exported component has been changed. |