blob: 12481af3483b90632f6cc28dd79cff7534a37a46 [file] [log] [blame]
Ben Gilad4937ff92013-12-12 12:05:37 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 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 Orugantic51ebdf2020-03-23 16:54:51 -070018 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
19 package="com.android.server.telecom"
20 coreApp="true"
21 android:sharedUserId="android.uid.system">
Santos Cordon3e3b5412013-12-16 17:33:45 -080022
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070023 <protected-broadcast android:name="android.intent.action.SHOW_MISSED_CALLS_NOTIFICATION"/>
24 <protected-broadcast android:name="com.android.server.telecom.MESSAGE_SENT"/>
Hall Liuaf74a5c2018-09-19 18:05:51 -070025
Bryce Lee41045b42015-08-05 13:10:39 -070026
Ben Gilad4937ff92013-12-12 12:05:37 -080027 <!-- Prevents the activity manager from delaying any activity-start
28 requests by this package, including requests immediately after
29 the user presses "home". -->
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070030 <uses-permission android:name="android.permission.BIND_CONNECTION_SERVICE"/>
31 <uses-permission android:name="android.permission.BIND_INCALL_SERVICE"/>
32 <uses-permission android:name="android.permission.BLUETOOTH"/>
33 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
34 <uses-permission android:name="android.permission.BROADCAST_CALLLOG_INFO"/>
35 <uses-permission android:name="android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION"/>
36 <uses-permission android:name="android.permission.CALL_PRIVILEGED"/>
37 <uses-permission android:name="android.permission.HANDLE_CALL_INTENT"/>
38 <uses-permission android:name="android.permission.HANDLE_CAR_MODE_CHANGES"/>
39 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/>
40 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/>
41 <uses-permission android:name="android.permission.MANAGE_USERS"/>
42 <uses-permission android:name="android.permission.MANAGE_ROLE_HOLDERS"/>
43 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
Tyler Gunn5d66e1d2018-01-25 20:22:49 -080044 <!-- Required to determine source of ongoing audio recordings. -->
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070045 <uses-permission android:name="android.permission.MODIFY_AUDIO_ROUTING"/>
46 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE"/>
47 <uses-permission android:name="android.permission.READ_CALL_LOG"/>
48 <uses-permission android:name="android.permission.READ_DEVICE_CONFIG"/>
49 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
Kurt Dresner933add52020-10-01 17:53:32 -070050 <uses-permission android:name="android.permission.READ_PROJECTION_STATE"/>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070051 <uses-permission android:name="android.permission.SEND_SMS"/>
52 <uses-permission android:name="android.permission.STOP_APP_SWITCHES"/>
53 <uses-permission android:name="android.permission.VIBRATE"/>
54 <uses-permission android:name="android.permission.WRITE_CALL_LOG"/>
55 <uses-permission android:name="android.permission.WAKE_LOCK"/>
56 <uses-permission android:name="android.permission.READ_BLOCKED_NUMBERS"/>
57 <uses-permission android:name="android.permission.WRITE_BLOCKED_NUMBERS"/>
58 <uses-permission android:name="android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME"/>
Sooraj Sasindran8330df02021-10-26 02:18:16 -070059 <uses-permission android:name="com.android.phone.permission.ACCESS_LAST_KNOWN_CELL_ID"/>
Tyler Gunnd1607682014-08-15 11:29:12 -070060
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070061 <permission android:name="android.permission.BROADCAST_CALLLOG_INFO"
62 android:label="Broadcast the call type/duration information"
63 android:protectionLevel="signature|system"/>
Yong Jiang271b9ae2014-10-09 12:08:54 -050064
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070065 <permission android:name="android.permission.PROCESS_CALLLOG_INFO"
66 android:label="Register to handle the broadcasted call type/duration information"
67 android:protectionLevel="signature|system"/>
Yong Jiang271b9ae2014-10-09 12:08:54 -050068
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070069 <permission android:name="android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION"
70 android:label="Broadcast phone account registration"
71 android:protectionLevel="signature|system"/>
Santos Cordon4c778492015-02-27 15:13:35 -080072
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070073 <permission android:name="android.permission.PROCESS_PHONE_ACCOUNT_REGISTRATION"
74 android:label="Process phone account registration"
75 android:protectionLevel="signature|system"/>
Santos Cordon4c778492015-02-27 15:13:35 -080076
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070077 <permission android:name="android.permission.HANDLE_CALL_INTENT"
78 android:label="Protects handling the call intent via the TelecomManager API."
79 android:protectionLevel="signature|system"/>
Tyler Gunnefe26992018-10-26 09:24:13 -070080
Santos Cordon581ec4a2014-12-15 09:59:26 -080081 <application android:label="@string/telecommAppLabel"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070082 android:icon="@mipmap/ic_launcher_phone"
83 android:allowBackup="false"
84 android:supportsRtl="true"
85 android:process="system"
86 android:usesCleartextTraffic="false"
87 android:defaultToDeviceProtectedStorage="true"
88 android:directBootAware="true">
Santos Cordon10e68322013-12-12 16:06:56 -080089
90 <!-- CALL vs CALL_PRIVILEGED vs CALL_EMERGENCY
91 We have three different intents through which a call can be initiated each with its
92 own behavior.
93 1) CALL - Expected from any third party app with CALL_PHONE permission. Through this
94 intent, an app can call any number except emergency numbers.
95 2) CALL_PRIVILEGED - Expected from the dialer app and requires CALL_PRIVILEGED
96 permission, which is only held by the system dialer and the emergency dialer at the
97 time of this writing. Through this intent, an app can call any number including
98 emergency numbers.
99 3) CALL_EMERGENCY - Expected from the emergency dialer app and requires CALL_PRIVILEGED
100 permission. Through this intent, an app can call *only* emergency numbers. -->
101
Mohamedc9261852016-02-05 14:10:17 -0800102 <!-- Activity that displays UI for managing blocked numbers. -->
103 <activity android:name=".settings.BlockedNumbersActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700104 android:label="@string/blocked_numbers"
105 android:configChanges="orientation|screenSize|keyboardHidden"
106 android:theme="@style/Theme.Telecom.BlockedNumbers"
107 android:process=":ui"
108 android:exported="true">
Abhijith Shastryb1308ec2016-02-29 16:26:09 -0800109 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700110 <action android:name="android.telecom.action.MANAGE_BLOCKED_NUMBERS"/>
111 <category android:name="android.intent.category.DEFAULT"/>
Abhijith Shastryb1308ec2016-02-29 16:26:09 -0800112 </intent-filter>
113 </activity>
Ruijie Bai20e49952017-12-25 10:55:48 +0800114
115 <activity android:name=".settings.CallBlockDisabledActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700116 android:configChanges="keyboardHidden|orientation|screenSize"
117 android:excludeFromRecents="true"
118 android:launchMode="singleInstance"
119 android:theme="@style/Theme.Telecomm.Transparent"
120 android:process=":ui">
Ruijie Bai20e49952017-12-25 10:55:48 +0800121 </activity>
122
Santos Cordon10e68322013-12-12 16:06:56 -0800123 <!-- Activity that starts the outgoing call process by listening to CALL intent which
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700124 contain contact information in the intent's data. CallActivity handles any data
125 URL with the schemes "tel", "sip", and "voicemail". It also handles URLs linked to
126 contacts provider entries. Any data not fitting the schema described is ignored. -->
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800127 <activity android:name=".components.UserCallActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700128 android:label="@string/userCallActivityLabel"
129 android:theme="@style/Theme.Telecomm.Transparent"
130 android:permission="android.permission.CALL_PHONE"
131 android:excludeFromRecents="true"
132 android:process=":ui"
133 android:exported="true">
Santos Cordon10e68322013-12-12 16:06:56 -0800134 <!-- CALL action intent filters for the various ways of initiating an outgoing call. -->
135 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700136 <action android:name="android.intent.action.CALL"/>
137 <category android:name="android.intent.category.DEFAULT"/>
138 <data android:scheme="tel"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800139 </intent-filter>
140 <!-- Specify an icon for SIP calls so that quick contacts widget shows a special SIP
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700141 icon for calls to SIP addresses. -->
Santos Cordon10e68322013-12-12 16:06:56 -0800142 <intent-filter android:icon="@drawable/ic_launcher_sip_call">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700143 <action android:name="android.intent.action.CALL"/>
144 <category android:name="android.intent.category.DEFAULT"/>
145 <data android:scheme="sip"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800146 </intent-filter>
147 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700148 <action android:name="android.intent.action.CALL"/>
149 <category android:name="android.intent.category.DEFAULT"/>
150 <data android:scheme="voicemail"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800151 </intent-filter>
152 <!-- Omit default category below so that all Intents sent to this filter must be
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700153 explicit. -->
Santos Cordon10e68322013-12-12 16:06:56 -0800154 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700155 <action android:name="android.intent.action.CALL"/>
156 <data android:mimeType="vnd.android.cursor.item/phone"/>
157 <data android:mimeType="vnd.android.cursor.item/phone_v2"/>
158 <data android:mimeType="vnd.android.cursor.item/person"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800159 </intent-filter>
160 </activity>
161
162 <!-- Works like CallActivity with CALL_PRIVILEGED instead of CALL intent.
163 CALL_PRIVILEGED allows calls to emergency numbers unlike CALL which disallows it.
164 Intent-sender must have the CALL_PRIVILEGED permission or the broadcast will not be
165 processed. High priority of 1000 is used in all intent filters to prevent anything but
166 the system from processing this intent (b/8871505). -->
167 <activity-alias android:name="PrivilegedCallActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700168 android:targetActivity=".components.UserCallActivity"
169 android:permission="android.permission.CALL_PRIVILEGED"
Ashwini Orugantiee1de982020-05-29 17:44:32 -0700170 android:exported="true"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700171 android:process=":ui">
Santos Cordon10e68322013-12-12 16:06:56 -0800172 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700173 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
174 <category android:name="android.intent.category.DEFAULT"/>
175 <data android:scheme="tel"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800176 </intent-filter>
177 <intent-filter android:priority="1000"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700178 android:icon="@drawable/ic_launcher_sip_call">
179 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
180 <category android:name="android.intent.category.DEFAULT"/>
181 <data android:scheme="sip"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800182 </intent-filter>
183 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700184 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
185 <category android:name="android.intent.category.DEFAULT"/>
186 <data android:scheme="voicemail"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800187 </intent-filter>
188 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700189 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
190 <data android:mimeType="vnd.android.cursor.item/phone"/>
191 <data android:mimeType="vnd.android.cursor.item/phone_v2"/>
192 <data android:mimeType="vnd.android.cursor.item/person"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800193 </intent-filter>
194 </activity-alias>
195
196 <!-- Works like CallActivity with CALL_EMERGENCY instead of CALL intent.
197 CALL_EMERGENCY allows calls *only* to emergency numbers. Intent-sender must have the
198 CALL_PRIVILEGED permission or the broadcast will not be processed. High priority of
199 1000 is used in all intent filters to prevent anything but the system from processing
200 this intent (b/8871505). -->
Santos Cordondf399862014-08-06 04:39:15 -0700201 <!-- TODO: Is there really a notion of an emergency SIP number? If not, can
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700202 that scheme be removed from this activity? -->
Santos Cordon10e68322013-12-12 16:06:56 -0800203 <activity-alias android:name="EmergencyCallActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700204 android:targetActivity=".components.UserCallActivity"
205 android:permission="android.permission.CALL_PRIVILEGED"
Ashwini Orugantiee1de982020-05-29 17:44:32 -0700206 android:exported="true"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700207 android:process=":ui">
Santos Cordon10e68322013-12-12 16:06:56 -0800208 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700209 <action android:name="android.intent.action.CALL_EMERGENCY"/>
210 <category android:name="android.intent.category.DEFAULT"/>
211 <data android:scheme="tel"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800212 </intent-filter>
213 <intent-filter android:priority="1000"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700214 android:icon="@drawable/ic_launcher_sip_call">
215 <action android:name="android.intent.action.CALL_EMERGENCY"/>
216 <category android:name="android.intent.category.DEFAULT"/>
217 <data android:scheme="sip"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800218 </intent-filter>
219 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700220 <action android:name="android.intent.action.CALL_EMERGENCY"/>
221 <category android:name="android.intent.category.DEFAULT"/>
222 <data android:scheme="voicemail"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800223 </intent-filter>
224 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700225 <action android:name="android.intent.action.CALL_EMERGENCY"/>
226 <data android:mimeType="vnd.android.cursor.item/phone"/>
227 <data android:mimeType="vnd.android.cursor.item/phone_v2"/>
228 <data android:mimeType="vnd.android.cursor.item/person"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800229 </intent-filter>
230 </activity-alias>
231
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700232 <receiver android:name=".components.TelecomBroadcastReceiver"
233 android:exported="false"
234 android:process="system">
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700235 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700236 <action android:name="com.android.server.telecom.ACTION_CLEAR_MISSED_CALLS"/>
237 <action android:name="com.android.server.telecom.ACTION_CALL_BACK_FROM_NOTIFICATION"/>
238 <action android:name="com.android.server.telecom.ACTION_SEND_SMS_FROM_NOTIFICATION"/>
239 <action android:name="com.android.server.telecom.ACTION_ANSWER_FROM_NOTIFICATION"/>
240 <action android:name="com.android.server.telecom.ACTION_REJECT_FROM_NOTIFICATION"/>
241 <action android:name="com.android.server.telecom.PROCEED_WITH_CALL"/>
242 <action android:name="com.android.server.telecom.CANCEL_CALL"/>
243 <action android:name="com.android.server.telecom.PROCEED_WITH_REDIRECTED_CALL"/>
244 <action android:name="com.android.server.telecom.CANCEL_REDIRECTED_CALL"/>
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700245 </intent-filter>
246 </receiver>
247
tonyzhu8ba94c52018-10-23 15:37:04 +0800248 <receiver android:name=".components.AppUninstallBroadcastReceiver"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700249 android:process="system"
250 android:exported="true">
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700251 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700252 <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED"/>
253 <data android:scheme="package"/>
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700254 </intent-filter>
255 </receiver>
Tyler Gunnd900ce62014-08-13 11:40:59 -0700256
Andrew Leeaf22dd12015-02-25 17:40:11 -0800257 <activity android:name=".RespondViaSmsSettings"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700258 android:label="@string/respond_via_sms_setting_title"
259 android:configChanges="orientation|screenSize|keyboardHidden"
260 android:theme="@style/Theme.Telecom.DialerSettings"
261 android:process=":ui"
262 android:exported="true">
Ihab Awadff7493a2014-06-10 13:47:44 -0700263 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700264 <action android:name="android.intent.action.MAIN"/>
265 <action android:name="android.telecom.action.SHOW_RESPOND_VIA_SMS_SETTINGS"/>
266 <category android:name="android.intent.category.DEFAULT"/>
Ihab Awadff7493a2014-06-10 13:47:44 -0700267 </intent-filter>
268 </activity>
Ihab Awad104f8062014-07-17 11:29:35 -0700269
Santos Cordon55344342015-05-04 13:05:30 -0700270 <activity android:name=".settings.EnableAccountPreferenceActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700271 android:label="@string/enable_account_preference_title"
272 android:configChanges="orientation|screenSize|keyboardHidden"
273 android:theme="@style/Theme.Telecom.DialerSettings"
274 android:process=":ui"
275 android:exported="true">
Santos Cordon55344342015-05-04 13:05:30 -0700276 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700277 <action android:name="android.intent.action.MAIN"/>
278 <category android:name="android.intent.category.DEFAULT"/>
Santos Cordon55344342015-05-04 13:05:30 -0700279 </intent-filter>
280 </activity>
281
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800282 <activity android:name=".components.ErrorDialogActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700283 android:configChanges="orientation|screenSize|keyboardHidden"
284 android:excludeFromRecents="true"
285 android:launchMode="singleInstance"
286 android:theme="@style/Theme.Telecomm.Transparent"
287 android:process=":ui">
Yorke Leed7255872014-08-25 15:03:51 -0700288 </activity>
289
Tyler Gunnbbd78a72017-04-30 14:16:07 -0700290 <activity android:name=".ui.ConfirmCallDialogActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700291 android:configChanges="orientation|screenSize|keyboardHidden"
292 android:excludeFromRecents="true"
293 android:launchMode="singleInstance"
294 android:theme="@style/Theme.Telecomm.Transparent"
295 android:process=":ui">
Tyler Gunnbbd78a72017-04-30 14:16:07 -0700296 </activity>
297
sqiane976e682018-10-05 18:51:40 -0700298 <activity android:name=".ui.CallRedirectionTimeoutDialogActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700299 android:configChanges="orientation|screenSize|keyboardHidden"
300 android:excludeFromRecents="true"
301 android:launchMode="singleInstance"
302 android:theme="@style/Theme.Telecomm.Transparent"
303 android:process=":ui">
sqiane976e682018-10-05 18:51:40 -0700304 </activity>
305
Tyler Gunn47eb3fe2018-03-12 14:38:47 -0700306 <activity android:name=".ui.TelecomDeveloperMenu"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700307 android:label="@string/developer_title"
308 android:exported="false"
309 android:process=":ui"/>
Yorke Leeb5c5d442015-04-27 15:21:53 -0700310
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800311 <service android:name=".components.BluetoothPhoneService"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700312 android:singleUser="true"
313 android:process="system"
314 android:exported="true">
Santos Cordonfddf12e2014-09-25 15:08:57 -0700315 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700316 <action android:name="android.bluetooth.IBluetoothHeadsetPhone"/>
Santos Cordonfddf12e2014-09-25 15:08:57 -0700317 </intent-filter>
Mariusz Skamrac6db1292020-01-08 14:12:25 +0000318 <intent-filter>
319 <action android:name="android.bluetooth.IBluetoothLeCallControlCallback" />
320 </intent-filter>
Santos Cordonfddf12e2014-09-25 15:08:57 -0700321 </service>
322
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800323 <service android:name=".components.TelecomService"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700324 android:singleUser="true"
325 android:process="system"
326 android:exported="true">
Santos Cordonf987d1a2014-12-02 03:37:03 -0800327 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700328 <action android:name="android.telecom.ITelecomService"/>
Santos Cordonf987d1a2014-12-02 03:37:03 -0800329 </intent-filter>
330 </service>
331
Ben Gilad4937ff92013-12-12 12:05:37 -0800332 </application>
333</manifest>