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