Brad Ebinger | 6bc446c | 2017-12-18 17:59:27 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- |
| 3 | ~ Copyright (C) 2017 The Android Open Source Project |
| 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License |
| 16 | --> |
| 17 | |
| 18 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 19 | coreApp="true" |
| 20 | package="com.android.phone.testapps.imstestapp"> |
Brad Ebinger | 4c46071 | 2018-10-01 10:40:55 -0700 | [diff] [blame] | 21 | <uses-permission android:name="android.permission.READ_PHONE_STATE"/> |
Brad Ebinger | 2ad8f7a | 2019-02-04 18:03:30 -0800 | [diff] [blame] | 22 | <!--Beware, declaring the below permission will cause the device to not boot unless you add |
| 23 | this app and permission to frameworks/base/data/etc/privapp-permissions-platform.xml--> |
Brad Ebinger | 0f572fc | 2020-09-25 17:40:06 -0700 | [diff] [blame] | 24 | <!--uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"/--> |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 25 | <application android:label="ImsTestService" |
| 26 | android:directBootAware="true"> |
| 27 | <activity android:name=".ImsTestServiceApp" |
| 28 | android:label="ImsTestService" |
| 29 | android:exported="true"> |
Brad Ebinger | 6bc446c | 2017-12-18 17:59:27 -0800 | [diff] [blame] | 30 | <intent-filter> |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 31 | <action android:name="android.intent.action.MAIN"/> |
| 32 | <category android:name="android.intent.category.DEFAULT"/> |
| 33 | <category android:name="android.intent.category.LAUNCHER"/> |
Brad Ebinger | 6bc446c | 2017-12-18 17:59:27 -0800 | [diff] [blame] | 34 | </intent-filter> |
| 35 | </activity> |
| 36 | |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 37 | <activity android:name=".ImsRegistrationActivity" |
| 38 | android:label="IMS Registration"/> |
| 39 | <activity android:name=".ImsCallingActivity" |
| 40 | android:label="IMS Calling"/> |
| 41 | <activity android:name=".ImsConfigActivity" |
| 42 | android:label="IMS Config"/> |
Brad Ebinger | 6bc446c | 2017-12-18 17:59:27 -0800 | [diff] [blame] | 43 | |
| 44 | <service android:name=".TestImsService" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 45 | android:exported="true" |
| 46 | android:enabled="true" |
| 47 | android:persistent="true" |
| 48 | android:permission="android.permission.BIND_IMS_SERVICE"> |
| 49 | <!--meta-data android:name="android.telephony.ims.MMTEL_FEATURE" |
| 50 | android:value="true"/--> |
Brad Ebinger | 6780170 | 2018-03-02 13:43:36 -0800 | [diff] [blame] | 51 | <!-- No features means we will get queried for dynamic config. --> |
Brad Ebinger | 6bc446c | 2017-12-18 17:59:27 -0800 | [diff] [blame] | 52 | <intent-filter> |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 53 | <action android:name="android.telephony.ims.ImsService"/> |
Brad Ebinger | 6bc446c | 2017-12-18 17:59:27 -0800 | [diff] [blame] | 54 | </intent-filter> |
| 55 | </service> |
| 56 | </application> |
| 57 | </manifest> |