diff options
author | 2024-10-09 21:24:51 +0000 | |
---|---|---|
committer | 2024-10-24 05:24:02 +0000 | |
commit | 7524fd573150739154d797446fbdf734f8423018 (patch) | |
tree | 694a5ea43c22eafc503df25f3c4f15e3ce774906 | |
parent | 6a933fc3e88928f22cb7cd8cdd98217feaa69c71 (diff) |
CTS: Add permissions for media quality service
- `android.permission.ACCESS_GLOBAL_PQ_SERVICE for access global PQ params
- `android.permission.ACCESS_GLOBAL_PQ_SERVICE for access global AQ params
LOW_COVERAGE_REASON=NON_CODE_ONLY
Bug: 375312083
Change-Id: I1fbe2f9db12701134389dd9c81f85a30d3621637
Test: m
Flag: android.media.tv.flags.media_quality_fw
Relnote: add permissions for media quality service
-rw-r--r-- | tests/cts/permissionpolicy/res/raw/android_manifest.xml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/cts/permissionpolicy/res/raw/android_manifest.xml b/tests/cts/permissionpolicy/res/raw/android_manifest.xml index 2eff8b0af..cfe790292 100644 --- a/tests/cts/permissionpolicy/res/raw/android_manifest.xml +++ b/tests/cts/permissionpolicy/res/raw/android_manifest.xml @@ -8301,6 +8301,28 @@ android:protectionLevel="internal" android:featureFlag="android.content.pm.verification_service" /> + <!-- + @SystemApi + @FlaggedApi("android.media.tv.flags.media_quality_fw") + Allows an application to access its picture profile from the media quality database. + <p> Protection level: signature|privileged|vendor privileged + @hide + --> + <permission android:name="android.permission.MANAGE_GLOBAL_PICTURE_QUALITY_SERVICE" + android:protectionLevel="signature|privileged|vendorPrivileged" + android:featureFlag="android.media.tv.flags.media_quality_fw"/> + + <!-- + @SystemApi + @FlaggedApi("android.media.tv.flags.media_quality_fw") + Allows an application to access its sound profile from the media quality database. + <p> Protection level: signature|privileged|vendor privileged + @hide + --> + <permission android:name="android.permission.MANAGE_GLOBAL_SOUND_QUALITY_SERVICE" + android:protectionLevel="signature|privileged|vendorPrivileged" + android:featureFlag="android.media.tv.flags.media_quality_fw"/> + <!-- Allows app to enter trade-in-mode. <p>Protection level: signature|privileged @hide |