diff options
| author | 2023-02-02 19:00:10 +0000 | |
|---|---|---|
| committer | 2023-02-02 19:00:10 +0000 | |
| commit | 84ea730da005baf01130c83007fac611a291c402 (patch) | |
| tree | bc3c1605c2904bf094a3df94f9df4b3d9899fc97 | |
| parent | 225ce14f0ee04e84639b13919aa620279098af53 (diff) | |
| parent | 1248c48a5d6f2a77b8ae5d146def59ce05002ad6 (diff) | |
Merge "Add READ_WALLPAPER_INTERNAL to the Shell androidManifest" into tm-qpr-dev
| -rw-r--r-- | data/etc/privapp-permissions-platform.xml | 1 | ||||
| -rw-r--r-- | packages/Shell/AndroidManifest.xml | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/data/etc/privapp-permissions-platform.xml b/data/etc/privapp-permissions-platform.xml index 58a2073981bf..caa118a409f5 100644 --- a/data/etc/privapp-permissions-platform.xml +++ b/data/etc/privapp-permissions-platform.xml @@ -306,6 +306,7 @@ applications that come with the platform <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> <!-- Permission required for UiModeManager CTS test --> <permission name="android.permission.READ_PROJECTION_STATE"/> + <permission name="android.permission.READ_WALLPAPER_INTERNAL"/> <permission name="android.permission.READ_WIFI_CREDENTIAL"/> <permission name="android.permission.REAL_GET_TASKS"/> <permission name="android.permission.READ_PRIVILEGED_PHONE_STATE"/> diff --git a/packages/Shell/AndroidManifest.xml b/packages/Shell/AndroidManifest.xml index 3b862ffbbd9e..3915012a4a7d 100644 --- a/packages/Shell/AndroidManifest.xml +++ b/packages/Shell/AndroidManifest.xml @@ -356,6 +356,9 @@ <!-- Permission needed to test wallpaper dimming --> <uses-permission android:name="android.permission.SET_WALLPAPER_DIM_AMOUNT" /> + <!-- Permission needed to test wallpaper read methods --> + <uses-permission android:name="android.permission.READ_WALLPAPER_INTERNAL" /> + <!-- Permission required to test ContentResolver caching. --> <uses-permission android:name="android.permission.CACHE_CONTENT" /> |