diff options
author | 2024-10-02 16:53:49 +0000 | |
---|---|---|
committer | 2024-10-02 16:53:49 +0000 | |
commit | a9c83e9d9c2679bea3f76e754f21d697a8f6193d (patch) | |
tree | 12cf8210bec389a2737dd8eaf94cf9be7e67a2da | |
parent | 92a1e697a58218b22a58f1a472d310350386c217 (diff) | |
parent | 32ec3b253dad00cde669b4b2320517add9775c66 (diff) |
Merge "[PermissionPolicyTest] add VERIFICATION_AGENT permission" 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 af96c9a20..13423ffc5 100644 --- a/tests/cts/permissionpolicy/res/raw/android_manifest.xml +++ b/tests/cts/permissionpolicy/res/raw/android_manifest.xml @@ -8264,6 +8264,17 @@ <permission android:name="android.permission.RESERVED_FOR_TESTING_SIGNATURE" android:protectionLevel="signature"/> + <!-- @SystemApi + @FlaggedApi("android.content.pm.verification_service") + Allows app to be the verification agent to verify packages. + <p>Protection level: signature|privileged + @hide + --> + <permission android:name="android.permission.VERIFICATION_AGENT" + android:protectionLevel="signature|privileged" + android:featureFlag="android.content.pm.verification_service"/> + + <!-- Attribution for Geofencing service. --> <attribution android:tag="GeofencingService" android:label="@string/geofencing_service"/> <!-- Attribution for Country Detector. --> |