diff options
| author | 2022-01-20 23:24:32 -0800 | |
|---|---|---|
| committer | 2022-01-26 10:39:59 -0800 | |
| commit | 7744af9e9226a2cdaef10ad29f5194fd03c4cd09 (patch) | |
| tree | 405fc8fb8d76993513f39d520f15212e010f0eea /packages/Shell | |
| parent | b2c2e8fd42157b94a5e60e3446c41ad506bfc54e (diff) | |
Give shell BIND_TELECOM_CONNECTION_SERVICE for CTS
To exercise some telecom-related CTS tests, we need to be able to call
APIs guarded by BIND_TELECOM_CONNECTION_SERVICE.
Bug: 205737545
Test: atest android.telephony.cts.TelephonyManagerTest
Change-Id: Ie466a12038e652e597a6df399cd17d28b470dc4f
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 c6fbfd8780b8..19073bb30826 100644 --- a/packages/Shell/AndroidManifest.xml +++ b/packages/Shell/AndroidManifest.xml @@ -632,6 +632,9 @@ <!-- Permission required for CTS test - CaptioningManagerTest --> <uses-permission android:name="android.permission.SET_SYSTEM_AUDIO_CAPTION" /> + <!-- Permission required for CTS test - CtsTelephonyTestCases --> + <uses-permission android:name="android.permission.BIND_TELECOM_CONNECTION_SERVICE" /> + <application android:label="@string/app_label" android:theme="@android:style/Theme.DeviceDefault.DayNight" android:defaultToDeviceProtectedStorage="true" |