diff options
| author | 2021-01-13 16:15:14 -0800 | |
|---|---|---|
| committer | 2021-01-13 16:32:20 -0800 | |
| commit | dc4bf14bf7a77b8b9f4aafa283d62f43947ec347 (patch) | |
| tree | 6dcfea38e3fbaaacfb620fe04e7a89b09d90d58e | |
| parent | 7ae76a2f3f2635457568411cd9e13ae5a73a5595 (diff) | |
Add MANAGE_SENSOR_PRIVACY to shell permissions
Test: test shell commands
Bug: 162549680
Change-Id: I8a56b70c928b7ddd3904c2e9533578b531d81757
Merged-In: I8a56b70c928b7ddd3904c2e9533578b531d81757
| -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 741a6803a1e3..0fd814e6ce94 100644 --- a/packages/Shell/AndroidManifest.xml +++ b/packages/Shell/AndroidManifest.xml @@ -345,6 +345,9 @@ <uses-permission android:name="android.permission.WIFI_ACCESS_COEX_UNSAFE_CHANNELS" /> <uses-permission android:name="android.permission.WIFI_UPDATE_COEX_UNSAFE_CHANNELS" /> + <!-- Permission required for CTS test - CtsSensorPrivacyTestCases --> + <uses-permission android:name="android.permission.MANAGE_SENSOR_PRIVACY" /> + <application android:label="@string/app_label" android:theme="@android:style/Theme.DeviceDefault.DayNight" android:defaultToDeviceProtectedStorage="true" |