Tyler Gunn | 62f9cfd | 2021-04-29 11:08:15 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2021 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 18 | coreApp="true" |
| 19 | package="com.android.server.telecom.callaudiotest"> |
| 20 | |
| 21 | <uses-sdk android:minSdkVersion="28" |
| 22 | android:targetSdkVersion="29"/> |
| 23 | <uses-permission android:name="android.permission.BLUETOOTH"/> |
| 24 | <uses-permission android:name="android.permission.CALL_PHONE"/> |
| 25 | <uses-permission android:name="android.permission.CONTROL_INCALL_EXPERIENCE"/> |
| 26 | <uses-permission android:name="android.permission.READ_CALL_LOG"/> |
| 27 | <uses-permission android:name="android.permission.READ_PHONE_STATE"/> |
| 28 | <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/> |
| 29 | <uses-permission android:name="android.permission.MODIFY_AUDIO_ROUTING"/> |
| 30 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE"/> |
| 31 | <uses-permission android:name="android.permission.WRITE_CALL_LOG"/> |
| 32 | |
| 33 | <application android:label="Telecom Call Audio Test"> |
| 34 | <uses-library android:name="android.test.runner"/> |
| 35 | |
| 36 | <service android:name="com.android.server.telecom.callaudiotest.CallAudioTestInCallService" |
| 37 | android:permission="android.permission.BIND_INCALL_SERVICE" |
| 38 | android:exported="true"> |
| 39 | <meta-data android:name="android.telecom.IN_CALL_SERVICE_CAR_MODE_UI" |
| 40 | android:value="false"/> |
| 41 | <meta-data android:name="android.telecom.INCLUDE_SELF_MANAGED_CALLS" |
| 42 | android:value="false"/> |
| 43 | <intent-filter> |
| 44 | <action android:name="android.telecom.InCallService"/> |
| 45 | </intent-filter> |
| 46 | </service> |
| 47 | |
| 48 | <activity android:name="com.android.server.telecom.callaudiotest.CallAudioTestActivity" |
| 49 | android:label="Call Audio Test" |
| 50 | android:exported="true"> |
| 51 | <intent-filter> |
| 52 | <action android:name="android.intent.action.MAIN"/> |
| 53 | <category android:name="android.intent.category.DEFAULT"/> |
| 54 | <category android:name="android.intent.category.LAUNCHER"/> |
| 55 | </intent-filter> |
| 56 | </activity> |
| 57 | </application> |
| 58 | </manifest> |