diff options
| author | 2020-05-28 19:29:22 +0000 | |
|---|---|---|
| committer | 2020-05-28 19:29:22 +0000 | |
| commit | 8a6ef8e52db6f5cd9f8306c6f97d3054d8635db1 (patch) | |
| tree | 2c80662ab02c2c529bb7bd68d300f016b51451a2 | |
| parent | dcd5bcaf101a4efcacdf05b2c83e78aa6f21f4a8 (diff) | |
| parent | 96f7636149b4046a7bdd37c887c3db1621042710 (diff) | |
Merge "Add LOCATION_HARDWARE permission to shell." into rvc-dev
| -rw-r--r-- | data/etc/privapp-permissions-platform.xml | 2 | ||||
| -rw-r--r-- | packages/Shell/AndroidManifest.xml | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/data/etc/privapp-permissions-platform.xml b/data/etc/privapp-permissions-platform.xml index 16851cf95435..04fead8d4b32 100644 --- a/data/etc/privapp-permissions-platform.xml +++ b/data/etc/privapp-permissions-platform.xml @@ -411,6 +411,8 @@ applications that come with the platform <permission name="android.permission.TUNER_RESOURCE_ACCESS" /> <!-- Permissions required for CTS test - TVInputManagerTest --> <permission name="android.permission.TV_INPUT_HARDWARE" /> + <!-- Permission required for CTS test - PrivilegedLocationPermissionTest --> + <permission name="android.permission.LOCATION_HARDWARE" /> </privapp-permissions> <privapp-permissions package="com.android.statementservice"> diff --git a/packages/Shell/AndroidManifest.xml b/packages/Shell/AndroidManifest.xml index a0130f8e9b83..ae8e8e82241d 100644 --- a/packages/Shell/AndroidManifest.xml +++ b/packages/Shell/AndroidManifest.xml @@ -303,6 +303,9 @@ <!-- Permissions required for CTS test - TVInputManagerTest --> <uses-permission android:name="android.permission.TV_INPUT_HARDWARE" /> + <!-- Permission needed for CTS test - PrivilegedLocationPermissionTest --> + <uses-permission android:name="android.permission.LOCATION_HARDWARE" /> + <application android:label="@string/app_label" android:theme="@android:style/Theme.DeviceDefault.DayNight" android:defaultToDeviceProtectedStorage="true" |