Shuo Qian | 816a839 | 2020-12-28 21:16:44 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2019 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.companionapp"> |
| 20 | |
| 21 | <uses-sdk android:minSdkVersion="28" |
| 22 | android:targetSdkVersion="29"/> |
| 23 | |
| 24 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
| 25 | <uses-permission android:name="android.permission.MANAGE_ONGOING_CALLS" /> |
| 26 | <uses-feature android:name="android.software.companion_device_setup"/> |
| 27 | |
| 28 | <application android:label="Telecom Companion"> |
| 29 | <uses-library android:name="android.test.runner"/> |
| 30 | |
| 31 | <activity android:name="com.android.server.telecom.companionapp.CompanionTestApp" |
| 32 | android:label="CompanionTestApp"> |
| 33 | <intent-filter> |
| 34 | <action android:name="android.intent.action.MAIN" /> |
| 35 | <category android:name="android.intent.category.LAUNCHER" /> |
| 36 | </intent-filter> |
| 37 | </activity> |
| 38 | |
| 39 | <service android:name="com.android.server.telecom.companionapp.CompanionInCallServiceImpl" |
| 40 | android:permission="android.permission.BIND_INCALL_SERVICE" |
| 41 | android:exported="true"> |
| 42 | <intent-filter> |
| 43 | <action android:name="android.telecom.InCallService"/> |
| 44 | </intent-filter> |
| 45 | </service> |
| 46 | </application> |
| 47 | </manifest> |