Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2013 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" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 18 | coreApp="true" |
| 19 | package="com.android.server.telecom.testapps"> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 20 | |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 21 | <uses-sdk android:minSdkVersion="28" |
| 22 | android:targetSdkVersion="30"/> |
Yorke Lee | 1cbe702 | 2015-08-31 18:22:15 -0700 | [diff] [blame] | 23 | |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 24 | <uses-permission android:name="android.permission.ACCEPT_HANDOVER"/> |
| 25 | <uses-permission android:name="android.permission.BLUETOOTH"/> |
| 26 | <uses-permission android:name="android.permission.CAMERA"/> |
| 27 | <uses-permission android:name="android.permission.CALL_PHONE"/> |
| 28 | <uses-permission android:name="android.permission.CONTROL_INCALL_EXPERIENCE"/> |
| 29 | <uses-permission android:name="android.permission.INTERNET"/> |
| 30 | <uses-permission android:name="android.permission.MANAGE_OWN_CALLS"/> |
| 31 | <uses-permission android:name="android.permission.READ_CALL_LOG"/> |
| 32 | <uses-permission android:name="android.permission.READ_PHONE_STATE"/> |
| 33 | <uses-permission android:name="android.permission.REGISTER_CALL_PROVIDER"/> |
| 34 | <uses-permission android:name="android.permission.REGISTER_CONNECTION_MANAGER"/> |
| 35 | <uses-permission android:name="android.permission.REGISTER_SIM_SUBSCRIPTION"/> |
| 36 | <uses-permission android:name="android.permission.WRITE_CALL_LOG"/> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 37 | |
| 38 | <application android:label="@string/app_name"> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 39 | <uses-library android:name="android.test.runner"/> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 40 | |
| 41 | <!-- Miscellaneous telecom app-related test activities. --> |
| 42 | |
| 43 | <service android:name="com.android.server.telecom.testapps.TestConnectionService" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 44 | android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE" |
| 45 | android:exported="true"> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 46 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 47 | <action android:name="android.telecom.ConnectionService"/> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 48 | </intent-filter> |
| 49 | </service> |
| 50 | |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 51 | <receiver android:name=".TestConnectionServiceReceiver" |
| 52 | android:exported="true"> |
Brad Ebinger | 702f8f5 | 2017-08-18 13:09:06 -0700 | [diff] [blame] | 53 | <intent-filter> |
| 54 | <action android:name="android.server.telecom.testapps.ACTION_SWITCH_PHONE_ACCOUNT"/> |
| 55 | <action android:name="android.server.telecom.testapps.ACTION_SWITCH_PHONE_ACCOUNT_WRONG"/> |
| 56 | </intent-filter> |
| 57 | </receiver> |
| 58 | |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 59 | <service android:name="com.android.server.telecom.testapps.TestConnectionManager" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 60 | android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE" |
| 61 | android:exported="true"> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 62 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 63 | <action android:name="android.telecom.ConnectionService"/> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 64 | </intent-filter> |
| 65 | </service> |
| 66 | |
| 67 | <service android:name="com.android.server.telecom.testapps.TestInCallServiceImpl" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 68 | android:process="com.android.server.telecom.testapps.TestInCallService" |
| 69 | android:permission="android.permission.BIND_INCALL_SERVICE" |
| 70 | android:exported="true"> |
| 71 | <meta-data android:name="android.telecom.IN_CALL_SERVICE_UI" |
| 72 | android:value="true"/> |
Grace Jia | 18bc8a5 | 2021-02-01 06:54:12 -0800 | [diff] [blame] | 73 | <meta-data android:name="android.telecom.INCLUDE_SELF_MANAGED_CALLS" |
| 74 | android:value="true" /> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 75 | <intent-filter> |
| 76 | <action android:name="android.telecom.InCallService"/> |
| 77 | </intent-filter> |
| 78 | </service> |
| 79 | |
Tyler Gunn | 33b6729 | 2015-04-27 15:41:35 -0700 | [diff] [blame] | 80 | <receiver android:name="com.android.server.telecom.testapps.TestInCallServiceBroadcastReceiver" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 81 | android:process="com.android.server.telecom.testapps.TestInCallService" |
| 82 | android:exported="true"> |
Tyler Gunn | 33b6729 | 2015-04-27 15:41:35 -0700 | [diff] [blame] | 83 | <intent-filter> |
| 84 | <action android:name="android.server.telecom.testapps.ACTION_SEND_UPDATE_REQUEST_FROM_TEST_INCALL_SERVICE"/> |
Tyler Gunn | 86014fc | 2015-06-12 14:31:25 -0700 | [diff] [blame] | 85 | <action android:name="android.server.telecom.testapps.ACTION_SEND_UPGRADE_RESPONSE"/> |
Tyler Gunn | ea4c6fb | 2017-04-14 13:46:21 -0700 | [diff] [blame] | 86 | <action android:name="android.telecom.action.PHONE_ACCOUNT_REGISTERED"/> |
| 87 | <action android:name="android.telecom.action.PHONE_ACCOUNT_UNREGISTERED"/> |
Tyler Gunn | 33b6729 | 2015-04-27 15:41:35 -0700 | [diff] [blame] | 88 | </intent-filter> |
| 89 | </receiver> |
| 90 | |
Brad Ebinger | 702f8f5 | 2017-08-18 13:09:06 -0700 | [diff] [blame] | 91 | |
| 92 | |
Santos Cordon | f78a72f | 2016-01-21 22:10:32 +0000 | [diff] [blame] | 93 | <activity android:name="com.android.server.telecom.testapps.TestInCallUI" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 94 | android:process="com.android.server.telecom.testapps.TestInCallService" |
| 95 | android:label="@string/inCallUiAppLabel" |
| 96 | android:launchMode="singleInstance" |
| 97 | android:exported="true"> |
Santos Cordon | f78a72f | 2016-01-21 22:10:32 +0000 | [diff] [blame] | 98 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 99 | <action android:name="android.intent.action.MAIN"/> |
| 100 | <category android:name="android.intent.category.DEFAULT"/> |
| 101 | <category android:name="android.intent.category.LAUNCHER"/> |
Santos Cordon | f78a72f | 2016-01-21 22:10:32 +0000 | [diff] [blame] | 102 | </intent-filter> |
| 103 | </activity> |
| 104 | |
Hall Liu | dd68bc3 | 2017-01-25 17:14:23 -0800 | [diff] [blame] | 105 | <activity android:name="com.android.server.telecom.testapps.TestRttActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 106 | android:process="com.android.server.telecom.testapps.TestInCallService" |
| 107 | android:label="@string/rttUiLabel" |
| 108 | android:launchMode="singleInstance" |
| 109 | android:exported="true"> |
Hall Liu | dd68bc3 | 2017-01-25 17:14:23 -0800 | [diff] [blame] | 110 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 111 | <action android:name="android.intent.action.MAIN"/> |
| 112 | <category android:name="android.intent.category.DEFAULT"/> |
Hall Liu | dd68bc3 | 2017-01-25 17:14:23 -0800 | [diff] [blame] | 113 | </intent-filter> |
| 114 | </activity> |
| 115 | |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 116 | <activity android:name="com.android.server.telecom.testapps.TestCallActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 117 | android:theme="@android:style/Theme.NoDisplay" |
| 118 | android:label="@string/testCallActivityLabel" |
| 119 | android:exported="true"> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 120 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 121 | <action android:name="android.intent.action.MAIN"/> |
| 122 | <category android:name="android.intent.category.DEFAULT"/> |
| 123 | <category android:name="android.intent.category.LAUNCHER"/> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 124 | </intent-filter> |
| 125 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 126 | <action android:name="android.telecom.testapps.ACTION_START_INCOMING_CALL"/> |
| 127 | <action android:name="android.telecom.testapps.ACTION_NEW_UNKNOWN_CALL"/> |
| 128 | <category android:name="android.intent.category.DEFAULT"/> |
| 129 | <data android:scheme="tel"/> |
| 130 | <data android:scheme="sip"/> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 131 | </intent-filter> |
Yorke Lee | 2a6985f | 2015-03-27 12:30:44 -0700 | [diff] [blame] | 132 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 133 | <action android:name="android.telecom.testapps.ACTION_HANGUP_CALLS"/> |
| 134 | <category android:name="android.intent.category.DEFAULT"/> |
Yorke Lee | 2a6985f | 2015-03-27 12:30:44 -0700 | [diff] [blame] | 135 | </intent-filter> |
Yorke Lee | 817090c | 2015-04-10 12:12:25 -0700 | [diff] [blame] | 136 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 137 | <action android:name="android.telecom.testapps.ACTION_SEND_UPGRADE_REQUEST"/> |
| 138 | <category android:name="android.intent.category.DEFAULT"/> |
| 139 | <data android:scheme="int"/> |
Yorke Lee | 817090c | 2015-04-10 12:12:25 -0700 | [diff] [blame] | 140 | </intent-filter> |
Hall Liu | dd68bc3 | 2017-01-25 17:14:23 -0800 | [diff] [blame] | 141 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 142 | <action android:name="android.telecom.testapps.ACTION_RTT_CALL"/> |
| 143 | <category android:name="android.intent.category.DEFAULT"/> |
| 144 | <data android:scheme="tel"/> |
Hall Liu | dd68bc3 | 2017-01-25 17:14:23 -0800 | [diff] [blame] | 145 | </intent-filter> |
Hall Liu | aeece4e | 2017-02-14 16:42:12 -0800 | [diff] [blame] | 146 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 147 | <action android:name="android.telecom.testapps.ACTION_REMOTE_RTT_UPGRADE"/> |
| 148 | <category android:name="android.intent.category.DEFAULT"/> |
Hall Liu | aeece4e | 2017-02-14 16:42:12 -0800 | [diff] [blame] | 149 | </intent-filter> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 150 | </activity> |
| 151 | |
| 152 | <receiver android:name="com.android.server.telecom.testapps.CallNotificationReceiver" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 153 | android:exported="false"> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 154 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 155 | <action android:name="com.android.server.telecom.testapps.ACTION_CALL_SERVICE_EXIT"/> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 156 | </intent-filter> |
| 157 | </receiver> |
| 158 | |
| 159 | <activity android:name="com.android.server.telecom.testapps.TestDialerActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 160 | android:label="@string/testDialerActivityLabel" |
| 161 | android:process="com.android.server.telecom.testapps.TestInCallService" |
| 162 | android:exported="true"> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 163 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 164 | <action android:name="android.intent.action.DIAL"/> |
| 165 | <category android:name="android.intent.category.DEFAULT"/> |
| 166 | <category android:name="android.intent.category.BROWSABLE"/> |
| 167 | <data android:mimeType="vnd.android.cursor.item/phone"/> |
| 168 | <data android:mimeType="vnd.android.cursor.item/person"/> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 169 | </intent-filter> |
| 170 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 171 | <action android:name="android.intent.action.DIAL"/> |
| 172 | <category android:name="android.intent.category.DEFAULT"/> |
| 173 | <category android:name="android.intent.category.BROWSABLE"/> |
| 174 | <data android:scheme="voicemail"/> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 175 | </intent-filter> |
| 176 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 177 | <action android:name="android.intent.action.DIAL"/> |
| 178 | <category android:name="android.intent.category.DEFAULT"/> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 179 | </intent-filter> |
| 180 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 181 | <action android:name="android.intent.action.VIEW"/> |
| 182 | <action android:name="android.intent.action.DIAL"/> |
| 183 | <category android:name="android.intent.category.DEFAULT"/> |
| 184 | <category android:name="android.intent.category.BROWSABLE"/> |
| 185 | <data android:scheme="tel"/> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 186 | </intent-filter> |
| 187 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 188 | <action android:name="android.intent.action.MAIN"/> |
| 189 | <category android:name="android.intent.category.DEFAULT"/> |
| 190 | <category android:name="android.intent.category.LAUNCHER"/> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 191 | </intent-filter> |
| 192 | </activity> |
pkanwar | dc4c14d | 2016-10-31 11:04:18 -0700 | [diff] [blame] | 193 | |
| 194 | <activity android:name="com.android.server.telecom.testapps.TestUssdActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 195 | android:label="@string/UssdUiAppLabel" |
| 196 | android:launchMode="singleInstance" |
| 197 | android:exported="true"> |
pkanwar | dc4c14d | 2016-10-31 11:04:18 -0700 | [diff] [blame] | 198 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 199 | <action android:name="android.intent.action.MAIN"/> |
| 200 | <category android:name="android.intent.category.DEFAULT"/> |
| 201 | <category android:name="android.intent.category.LAUNCHER"/> |
pkanwar | dc4c14d | 2016-10-31 11:04:18 -0700 | [diff] [blame] | 202 | </intent-filter> |
Tyler Gunn | a90ba73 | 2017-01-26 07:24:08 -0800 | [diff] [blame] | 203 | </activity> |
| 204 | |
pkanwar | c0d6043 | 2017-05-04 09:17:23 -0700 | [diff] [blame] | 205 | <activity android:name="com.android.server.telecom.testapps.TestCertActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 206 | android:label="@string/KeyUiAppLabel" |
| 207 | android:launchMode="singleInstance" |
| 208 | android:exported="true"> |
pkanwar | c0d6043 | 2017-05-04 09:17:23 -0700 | [diff] [blame] | 209 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 210 | <action android:name="android.intent.action.MAIN"/> |
| 211 | <category android:name="android.intent.category.DEFAULT"/> |
| 212 | <category android:name="android.intent.category.LAUNCHER"/> |
pkanwar | c0d6043 | 2017-05-04 09:17:23 -0700 | [diff] [blame] | 213 | </intent-filter> |
| 214 | </activity> |
| 215 | |
Tyler Gunn | a90ba73 | 2017-01-26 07:24:08 -0800 | [diff] [blame] | 216 | <activity android:name="com.android.server.telecom.testapps.SelfManagedCallingActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 217 | android:label="@string/selfManagedCallingActivityLabel" |
| 218 | android:process="com.android.server.telecom.testapps.SelfMangingCallingApp" |
| 219 | android:theme="@android:style/Theme.Material.Light" |
| 220 | android:exported="true"> |
Tyler Gunn | a90ba73 | 2017-01-26 07:24:08 -0800 | [diff] [blame] | 221 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 222 | <action android:name="android.intent.action.MAIN"/> |
| 223 | <category android:name="android.intent.category.DEFAULT"/> |
| 224 | <category android:name="android.intent.category.LAUNCHER"/> |
Tyler Gunn | a90ba73 | 2017-01-26 07:24:08 -0800 | [diff] [blame] | 225 | </intent-filter> |
pkanwar | dc4c14d | 2016-10-31 11:04:18 -0700 | [diff] [blame] | 226 | </activity> |
Tyler Gunn | a90ba73 | 2017-01-26 07:24:08 -0800 | [diff] [blame] | 227 | |
Tyler Gunn | 115c06e | 2017-03-02 09:29:07 -0800 | [diff] [blame] | 228 | <activity android:name="com.android.server.telecom.testapps.IncomingSelfManagedCallActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 229 | android:label="@string/selfManagedCallingActivityLabel" |
| 230 | android:process="com.android.server.telecom.testapps.SelfMangingCallingApp" |
| 231 | android:exported="true"> |
Tyler Gunn | 115c06e | 2017-03-02 09:29:07 -0800 | [diff] [blame] | 232 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 233 | <action android:name="android.intent.action.MAIN"/> |
Tyler Gunn | 115c06e | 2017-03-02 09:29:07 -0800 | [diff] [blame] | 234 | </intent-filter> |
| 235 | </activity> |
| 236 | |
Tyler Gunn | 6f9ceb2 | 2017-04-06 08:47:01 -0700 | [diff] [blame] | 237 | <activity android:name="com.android.server.telecom.testapps.HandoverActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 238 | android:label="@string/selfManagedCallingActivityLabel" |
| 239 | android:process="com.android.server.telecom.testapps.SelfMangingCallingApp" |
| 240 | android:exported="true"> |
Tyler Gunn | 6f9ceb2 | 2017-04-06 08:47:01 -0700 | [diff] [blame] | 241 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 242 | <action android:name="android.intent.action.MAIN"/> |
Tyler Gunn | 6f9ceb2 | 2017-04-06 08:47:01 -0700 | [diff] [blame] | 243 | </intent-filter> |
| 244 | </activity> |
| 245 | |
Tyler Gunn | a90ba73 | 2017-01-26 07:24:08 -0800 | [diff] [blame] | 246 | <service android:name="com.android.server.telecom.testapps.SelfManagedConnectionService" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 247 | android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE" |
| 248 | android:process="com.android.server.telecom.testapps.SelfMangingCallingApp" |
| 249 | android:exported="true"> |
Tyler Gunn | a90ba73 | 2017-01-26 07:24:08 -0800 | [diff] [blame] | 250 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 251 | <action android:name="android.telecom.ConnectionService"/> |
Tyler Gunn | a90ba73 | 2017-01-26 07:24:08 -0800 | [diff] [blame] | 252 | </intent-filter> |
| 253 | </service> |
Tyler Gunn | 115c06e | 2017-03-02 09:29:07 -0800 | [diff] [blame] | 254 | |
| 255 | <receiver android:exported="false" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 256 | android:process="com.android.server.telecom.testapps.SelfMangingCallingApp" |
| 257 | android:name="com.android.server.telecom.testapps.SelfManagedCallNotificationReceiver"/> |
Tyler Gunn | 5a2f6fe | 2018-11-30 14:26:13 -0800 | [diff] [blame] | 258 | |
Tyler Gunn | d1ca71b | 2019-01-16 10:43:26 -0800 | [diff] [blame] | 259 | <receiver android:exported="true" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 260 | android:name="com.android.server.telecom.testapps.NuisanceReportReceiver"> |
Tyler Gunn | d1ca71b | 2019-01-16 10:43:26 -0800 | [diff] [blame] | 261 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 262 | <action android:name="android.telecom.action.NUISANCE_CALL_STATUS_CHANGED"/> |
Tyler Gunn | d1ca71b | 2019-01-16 10:43:26 -0800 | [diff] [blame] | 263 | </intent-filter> |
| 264 | </receiver> |
| 265 | |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 266 | <service android:name=".TestCallScreeningService" |
| 267 | android:permission="android.permission.BIND_SCREENING_SERVICE" |
| 268 | android:exported="true"> |
Tyler Gunn | 5a2f6fe | 2018-11-30 14:26:13 -0800 | [diff] [blame] | 269 | <intent-filter> |
| 270 | <action android:name="android.telecom.CallScreeningService"/> |
| 271 | </intent-filter> |
| 272 | </service> |
| 273 | |
| 274 | <activity android:name=".CallScreeningActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 275 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 276 | android:excludeFromRecents="true" |
| 277 | android:launchMode="singleInstance"> |
Tyler Gunn | 5a2f6fe | 2018-11-30 14:26:13 -0800 | [diff] [blame] | 278 | </activity> |
sqian | 7be879d | 2019-04-04 11:33:21 -0700 | [diff] [blame] | 279 | |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 280 | <service android:name=".TestCallRedirectionService" |
| 281 | android:permission="android.permission.BIND_CALL_REDIRECTION_SERVICE" |
| 282 | android:exported="true"> |
sqian | 7be879d | 2019-04-04 11:33:21 -0700 | [diff] [blame] | 283 | <intent-filter> |
| 284 | <action android:name="android.telecom.CallRedirectionService"/> |
| 285 | </intent-filter> |
| 286 | </service> |
| 287 | |
| 288 | <activity android:name=".CallRedirectionActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 289 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 290 | android:excludeFromRecents="true" |
| 291 | android:launchMode="singleInstance"> |
sqian | 7be879d | 2019-04-04 11:33:21 -0700 | [diff] [blame] | 292 | </activity> |
Grace Jia | 2b6e722 | 2019-12-17 12:53:19 -0800 | [diff] [blame] | 293 | |
| 294 | <activity android:name=".PostCallActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 295 | android:label="@string/postCallActivityLabel" |
| 296 | android:exported="true"> |
Grace Jia | 2b6e722 | 2019-12-17 12:53:19 -0800 | [diff] [blame] | 297 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 298 | <action android:name="android.telecom.action.POST_CALL"/> |
| 299 | <category android:name="android.intent.category.DEFAULT"/> |
Grace Jia | 2b6e722 | 2019-12-17 12:53:19 -0800 | [diff] [blame] | 300 | </intent-filter> |
| 301 | </activity> |
Ihab Awad | 945a82e | 2015-04-01 19:35:00 -0700 | [diff] [blame] | 302 | </application> |
| 303 | </manifest> |