diff options
author | Nikolas Havrikov <havrikov@google.com> | 2020-07-07 14:23:33 +0200 |
---|---|---|
committer | Nikolas Havrikov <havrikov@google.com> | 2020-07-08 12:09:27 +0000 |
commit | 74941c20edee276dd40f055a58fcea18c5b991f4 (patch) | |
tree | 4d96370331a16f7db9355348452f3172e8a3eec3 /packages/Shell | |
parent | 944082eca5feede79e0dd0c6e8a892ef835c6872 (diff) |
Make Shell require permission for a new CTS test
The permission RESET_APP_ERRORS is required for UnsupportedErrorDialogTests
Bug: 159443507
Test: built locally
Change-Id: I4d110278eb48799caf29f0582536a4dca10f10c1
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 3b48c1d12f40..f247166d1a97 100644 --- a/packages/Shell/AndroidManifest.xml +++ b/packages/Shell/AndroidManifest.xml @@ -198,6 +198,9 @@ <!-- Permission needed to test tcp keepalive offload. --> <uses-permission android:name="android.permission.PACKET_KEEPALIVE_OFFLOAD" /> + <!-- Permission needed for CTS test - UnsupportedErrorDialogTests --> + <uses-permission android:name="android.permission.RESET_APP_ERRORS" /> + <!-- Permission needed to run keyguard manager tests in CTS --> <uses-permission android:name="android.permission.CONTROL_KEYGUARD_SECURE_NOTIFICATIONS" /> |