diff options
author | Alex Kershaw <alexkershaw@google.com> | 2021-06-23 17:28:14 +0100 |
---|---|---|
committer | Alex Kershaw <alexkershaw@google.com> | 2021-06-29 11:52:04 +0100 |
commit | 1f5ef8e31d365210ce1d7cf91a7717b0a5d9b43c (patch) | |
tree | f061e20f7a7b1e93115ec2543dc87d5c88ea05cf /packages/Shell | |
parent | 9a6bdd9fc1b754df0aac0cb7f6865845461a88af (diff) |
Give Shell the NOTIFY_PENDING_SYSTEM_UPDATE permission
This is required for GTS testing it, rather than having to instrument
GMS Core.
Bug: 182271592
Test: tested as part of other CLs in this topic
Change-Id: Id56e0d206afe0a9069d1510a3dae9a07141fff60
Diffstat (limited to 'packages/Shell')
-rw-r--r-- | packages/Shell/AndroidManifest.xml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/Shell/AndroidManifest.xml b/packages/Shell/AndroidManifest.xml index 959b5ca56687..bea4f0ecb42c 100644 --- a/packages/Shell/AndroidManifest.xml +++ b/packages/Shell/AndroidManifest.xml @@ -563,6 +563,9 @@ <!-- Permission required for CTS test - GlobalSearchSessionPlatformCtsTests --> <uses-permission android:name="android.permission.READ_GLOBAL_APP_SEARCH_DATA" /> + <!-- Permission required for GTS test - PendingSystemUpdateTest --> + <uses-permission android:name="android.permission.NOTIFY_PENDING_SYSTEM_UPDATE" /> + <application android:label="@string/app_label" android:theme="@android:style/Theme.DeviceDefault.DayNight" android:defaultToDeviceProtectedStorage="true" |