blob: bd22e1c80bd49df37e07e47543d919b75e6af3b9 [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"/>
Rahul Sabnis5225f202021-12-23 17:31:31 -080034 <uses-permission android:name="android.permission.BLUETOOTH_PRIVILEGED"/>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070035 <uses-permission android:name="android.permission.BROADCAST_CALLLOG_INFO"/>
36 <uses-permission android:name="android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION"/>
37 <uses-permission android:name="android.permission.CALL_PRIVILEGED"/>
38 <uses-permission android:name="android.permission.HANDLE_CALL_INTENT"/>
39 <uses-permission android:name="android.permission.HANDLE_CAR_MODE_CHANGES"/>
40 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/>
41 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/>
42 <uses-permission android:name="android.permission.MANAGE_USERS"/>
43 <uses-permission android:name="android.permission.MANAGE_ROLE_HOLDERS"/>
44 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
Tyler Gunn5d66e1d2018-01-25 20:22:49 -080045 <!-- Required to determine source of ongoing audio recordings. -->
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070046 <uses-permission android:name="android.permission.MODIFY_AUDIO_ROUTING"/>
47 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE"/>
48 <uses-permission android:name="android.permission.READ_CALL_LOG"/>
49 <uses-permission android:name="android.permission.READ_DEVICE_CONFIG"/>
50 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
Kurt Dresner933add52020-10-01 17:53:32 -070051 <uses-permission android:name="android.permission.READ_PROJECTION_STATE"/>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070052 <uses-permission android:name="android.permission.SEND_SMS"/>
53 <uses-permission android:name="android.permission.STOP_APP_SWITCHES"/>
54 <uses-permission android:name="android.permission.VIBRATE"/>
55 <uses-permission android:name="android.permission.WRITE_CALL_LOG"/>
56 <uses-permission android:name="android.permission.WAKE_LOCK"/>
57 <uses-permission android:name="android.permission.READ_BLOCKED_NUMBERS"/>
58 <uses-permission android:name="android.permission.WRITE_BLOCKED_NUMBERS"/>
59 <uses-permission android:name="android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME"/>
Sooraj Sasindran8330df02021-10-26 02:18:16 -070060 <uses-permission android:name="com.android.phone.permission.ACCESS_LAST_KNOWN_CELL_ID"/>
Tyler Gunnd1607682014-08-15 11:29:12 -070061
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070062 <permission android:name="android.permission.BROADCAST_CALLLOG_INFO"
63 android:label="Broadcast the call type/duration information"
64 android:protectionLevel="signature|system"/>
Yong Jiang271b9ae2014-10-09 12:08:54 -050065
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070066 <permission android:name="android.permission.PROCESS_CALLLOG_INFO"
67 android:label="Register to handle the broadcasted call type/duration information"
68 android:protectionLevel="signature|system"/>
Yong Jiang271b9ae2014-10-09 12:08:54 -050069
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070070 <permission android:name="android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION"
71 android:label="Broadcast phone account registration"
72 android:protectionLevel="signature|system"/>
Santos Cordon4c778492015-02-27 15:13:35 -080073
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070074 <permission android:name="android.permission.PROCESS_PHONE_ACCOUNT_REGISTRATION"
75 android:label="Process phone account registration"
76 android:protectionLevel="signature|system"/>
Santos Cordon4c778492015-02-27 15:13:35 -080077
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070078 <permission android:name="android.permission.HANDLE_CALL_INTENT"
79 android:label="Protects handling the call intent via the TelecomManager API."
80 android:protectionLevel="signature|system"/>
Tyler Gunnefe26992018-10-26 09:24:13 -070081
Santos Cordon581ec4a2014-12-15 09:59:26 -080082 <application android:label="@string/telecommAppLabel"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070083 android:icon="@mipmap/ic_launcher_phone"
84 android:allowBackup="false"
85 android:supportsRtl="true"
86 android:process="system"
87 android:usesCleartextTraffic="false"
88 android:defaultToDeviceProtectedStorage="true"
89 android:directBootAware="true">
Santos Cordon10e68322013-12-12 16:06:56 -080090
91 <!-- CALL vs CALL_PRIVILEGED vs CALL_EMERGENCY
92 We have three different intents through which a call can be initiated each with its
93 own behavior.
94 1) CALL - Expected from any third party app with CALL_PHONE permission. Through this
95 intent, an app can call any number except emergency numbers.
96 2) CALL_PRIVILEGED - Expected from the dialer app and requires CALL_PRIVILEGED
97 permission, which is only held by the system dialer and the emergency dialer at the
98 time of this writing. Through this intent, an app can call any number including
99 emergency numbers.
100 3) CALL_EMERGENCY - Expected from the emergency dialer app and requires CALL_PRIVILEGED
101 permission. Through this intent, an app can call *only* emergency numbers. -->
102
Mohamedc9261852016-02-05 14:10:17 -0800103 <!-- Activity that displays UI for managing blocked numbers. -->
104 <activity android:name=".settings.BlockedNumbersActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700105 android:label="@string/blocked_numbers"
106 android:configChanges="orientation|screenSize|keyboardHidden"
107 android:theme="@style/Theme.Telecom.BlockedNumbers"
108 android:process=":ui"
109 android:exported="true">
Abhijith Shastryb1308ec2016-02-29 16:26:09 -0800110 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700111 <action android:name="android.telecom.action.MANAGE_BLOCKED_NUMBERS"/>
112 <category android:name="android.intent.category.DEFAULT"/>
Abhijith Shastryb1308ec2016-02-29 16:26:09 -0800113 </intent-filter>
114 </activity>
Ruijie Bai20e49952017-12-25 10:55:48 +0800115
116 <activity android:name=".settings.CallBlockDisabledActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700117 android:configChanges="keyboardHidden|orientation|screenSize"
118 android:excludeFromRecents="true"
119 android:launchMode="singleInstance"
120 android:theme="@style/Theme.Telecomm.Transparent"
121 android:process=":ui">
Ruijie Bai20e49952017-12-25 10:55:48 +0800122 </activity>
123
Santos Cordon10e68322013-12-12 16:06:56 -0800124 <!-- Activity that starts the outgoing call process by listening to CALL intent which
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700125 contain contact information in the intent's data. CallActivity handles any data
126 URL with the schemes "tel", "sip", and "voicemail". It also handles URLs linked to
127 contacts provider entries. Any data not fitting the schema described is ignored. -->
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800128 <activity android:name=".components.UserCallActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700129 android:label="@string/userCallActivityLabel"
130 android:theme="@style/Theme.Telecomm.Transparent"
131 android:permission="android.permission.CALL_PHONE"
132 android:excludeFromRecents="true"
133 android:process=":ui"
134 android:exported="true">
Santos Cordon10e68322013-12-12 16:06:56 -0800135 <!-- CALL action intent filters for the various ways of initiating an outgoing call. -->
136 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700137 <action android:name="android.intent.action.CALL"/>
138 <category android:name="android.intent.category.DEFAULT"/>
139 <data android:scheme="tel"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800140 </intent-filter>
141 <!-- Specify an icon for SIP calls so that quick contacts widget shows a special SIP
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700142 icon for calls to SIP addresses. -->
Santos Cordon10e68322013-12-12 16:06:56 -0800143 <intent-filter android:icon="@drawable/ic_launcher_sip_call">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700144 <action android:name="android.intent.action.CALL"/>
145 <category android:name="android.intent.category.DEFAULT"/>
146 <data android:scheme="sip"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800147 </intent-filter>
148 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700149 <action android:name="android.intent.action.CALL"/>
150 <category android:name="android.intent.category.DEFAULT"/>
151 <data android:scheme="voicemail"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800152 </intent-filter>
153 <!-- Omit default category below so that all Intents sent to this filter must be
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700154 explicit. -->
Santos Cordon10e68322013-12-12 16:06:56 -0800155 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700156 <action android:name="android.intent.action.CALL"/>
157 <data android:mimeType="vnd.android.cursor.item/phone"/>
158 <data android:mimeType="vnd.android.cursor.item/phone_v2"/>
159 <data android:mimeType="vnd.android.cursor.item/person"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800160 </intent-filter>
161 </activity>
162
163 <!-- Works like CallActivity with CALL_PRIVILEGED instead of CALL intent.
164 CALL_PRIVILEGED allows calls to emergency numbers unlike CALL which disallows it.
165 Intent-sender must have the CALL_PRIVILEGED permission or the broadcast will not be
166 processed. High priority of 1000 is used in all intent filters to prevent anything but
167 the system from processing this intent (b/8871505). -->
168 <activity-alias android:name="PrivilegedCallActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700169 android:targetActivity=".components.UserCallActivity"
170 android:permission="android.permission.CALL_PRIVILEGED"
Ashwini Orugantiee1de982020-05-29 17:44:32 -0700171 android:exported="true"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700172 android:process=":ui">
Santos Cordon10e68322013-12-12 16:06:56 -0800173 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700174 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
175 <category android:name="android.intent.category.DEFAULT"/>
176 <data android:scheme="tel"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800177 </intent-filter>
178 <intent-filter android:priority="1000"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700179 android:icon="@drawable/ic_launcher_sip_call">
180 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
181 <category android:name="android.intent.category.DEFAULT"/>
182 <data android:scheme="sip"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800183 </intent-filter>
184 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700185 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
186 <category android:name="android.intent.category.DEFAULT"/>
187 <data android:scheme="voicemail"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800188 </intent-filter>
189 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700190 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
191 <data android:mimeType="vnd.android.cursor.item/phone"/>
192 <data android:mimeType="vnd.android.cursor.item/phone_v2"/>
193 <data android:mimeType="vnd.android.cursor.item/person"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800194 </intent-filter>
195 </activity-alias>
196
197 <!-- Works like CallActivity with CALL_EMERGENCY instead of CALL intent.
198 CALL_EMERGENCY allows calls *only* to emergency numbers. Intent-sender must have the
199 CALL_PRIVILEGED permission or the broadcast will not be processed. High priority of
200 1000 is used in all intent filters to prevent anything but the system from processing
201 this intent (b/8871505). -->
Santos Cordondf399862014-08-06 04:39:15 -0700202 <!-- TODO: Is there really a notion of an emergency SIP number? If not, can
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700203 that scheme be removed from this activity? -->
Santos Cordon10e68322013-12-12 16:06:56 -0800204 <activity-alias android:name="EmergencyCallActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700205 android:targetActivity=".components.UserCallActivity"
206 android:permission="android.permission.CALL_PRIVILEGED"
Ashwini Orugantiee1de982020-05-29 17:44:32 -0700207 android:exported="true"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700208 android:process=":ui">
Santos Cordon10e68322013-12-12 16:06:56 -0800209 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700210 <action android:name="android.intent.action.CALL_EMERGENCY"/>
211 <category android:name="android.intent.category.DEFAULT"/>
212 <data android:scheme="tel"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800213 </intent-filter>
214 <intent-filter android:priority="1000"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700215 android:icon="@drawable/ic_launcher_sip_call">
216 <action android:name="android.intent.action.CALL_EMERGENCY"/>
217 <category android:name="android.intent.category.DEFAULT"/>
218 <data android:scheme="sip"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800219 </intent-filter>
220 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700221 <action android:name="android.intent.action.CALL_EMERGENCY"/>
222 <category android:name="android.intent.category.DEFAULT"/>
223 <data android:scheme="voicemail"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800224 </intent-filter>
225 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700226 <action android:name="android.intent.action.CALL_EMERGENCY"/>
227 <data android:mimeType="vnd.android.cursor.item/phone"/>
228 <data android:mimeType="vnd.android.cursor.item/phone_v2"/>
229 <data android:mimeType="vnd.android.cursor.item/person"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800230 </intent-filter>
231 </activity-alias>
232
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700233 <receiver android:name=".components.TelecomBroadcastReceiver"
234 android:exported="false"
235 android:process="system">
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700236 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700237 <action android:name="com.android.server.telecom.ACTION_CLEAR_MISSED_CALLS"/>
238 <action android:name="com.android.server.telecom.ACTION_CALL_BACK_FROM_NOTIFICATION"/>
239 <action android:name="com.android.server.telecom.ACTION_SEND_SMS_FROM_NOTIFICATION"/>
240 <action android:name="com.android.server.telecom.ACTION_ANSWER_FROM_NOTIFICATION"/>
241 <action android:name="com.android.server.telecom.ACTION_REJECT_FROM_NOTIFICATION"/>
242 <action android:name="com.android.server.telecom.PROCEED_WITH_CALL"/>
243 <action android:name="com.android.server.telecom.CANCEL_CALL"/>
244 <action android:name="com.android.server.telecom.PROCEED_WITH_REDIRECTED_CALL"/>
245 <action android:name="com.android.server.telecom.CANCEL_REDIRECTED_CALL"/>
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700246 </intent-filter>
247 </receiver>
248
tonyzhu8ba94c52018-10-23 15:37:04 +0800249 <receiver android:name=".components.AppUninstallBroadcastReceiver"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700250 android:process="system"
251 android:exported="true">
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700252 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700253 <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED"/>
254 <data android:scheme="package"/>
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700255 </intent-filter>
256 </receiver>
Tyler Gunnd900ce62014-08-13 11:40:59 -0700257
Andrew Leeaf22dd12015-02-25 17:40:11 -0800258 <activity android:name=".RespondViaSmsSettings"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700259 android:label="@string/respond_via_sms_setting_title"
260 android:configChanges="orientation|screenSize|keyboardHidden"
261 android:theme="@style/Theme.Telecom.DialerSettings"
262 android:process=":ui"
263 android:exported="true">
Ihab Awadff7493a2014-06-10 13:47:44 -0700264 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700265 <action android:name="android.intent.action.MAIN"/>
266 <action android:name="android.telecom.action.SHOW_RESPOND_VIA_SMS_SETTINGS"/>
267 <category android:name="android.intent.category.DEFAULT"/>
Ihab Awadff7493a2014-06-10 13:47:44 -0700268 </intent-filter>
269 </activity>
Ihab Awad104f8062014-07-17 11:29:35 -0700270
Santos Cordon55344342015-05-04 13:05:30 -0700271 <activity android:name=".settings.EnableAccountPreferenceActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700272 android:label="@string/enable_account_preference_title"
273 android:configChanges="orientation|screenSize|keyboardHidden"
274 android:theme="@style/Theme.Telecom.DialerSettings"
275 android:process=":ui"
276 android:exported="true">
Santos Cordon55344342015-05-04 13:05:30 -0700277 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700278 <action android:name="android.intent.action.MAIN"/>
279 <category android:name="android.intent.category.DEFAULT"/>
Santos Cordon55344342015-05-04 13:05:30 -0700280 </intent-filter>
281 </activity>
282
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800283 <activity android:name=".components.ErrorDialogActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700284 android:configChanges="orientation|screenSize|keyboardHidden"
285 android:excludeFromRecents="true"
286 android:launchMode="singleInstance"
287 android:theme="@style/Theme.Telecomm.Transparent"
288 android:process=":ui">
Yorke Leed7255872014-08-25 15:03:51 -0700289 </activity>
290
Tyler Gunnbbd78a72017-04-30 14:16:07 -0700291 <activity android:name=".ui.ConfirmCallDialogActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700292 android:configChanges="orientation|screenSize|keyboardHidden"
293 android:excludeFromRecents="true"
294 android:launchMode="singleInstance"
295 android:theme="@style/Theme.Telecomm.Transparent"
296 android:process=":ui">
Tyler Gunnbbd78a72017-04-30 14:16:07 -0700297 </activity>
298
sqiane976e682018-10-05 18:51:40 -0700299 <activity android:name=".ui.CallRedirectionTimeoutDialogActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700300 android:configChanges="orientation|screenSize|keyboardHidden"
301 android:excludeFromRecents="true"
302 android:launchMode="singleInstance"
303 android:theme="@style/Theme.Telecomm.Transparent"
304 android:process=":ui">
sqiane976e682018-10-05 18:51:40 -0700305 </activity>
306
Tyler Gunn47eb3fe2018-03-12 14:38:47 -0700307 <activity android:name=".ui.TelecomDeveloperMenu"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700308 android:label="@string/developer_title"
309 android:exported="false"
310 android:process=":ui"/>
Yorke Leeb5c5d442015-04-27 15:21:53 -0700311
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800312 <service android:name=".components.BluetoothPhoneService"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700313 android:singleUser="true"
314 android:process="system"
315 android:exported="true">
Santos Cordonfddf12e2014-09-25 15:08:57 -0700316 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700317 <action android:name="android.bluetooth.IBluetoothHeadsetPhone"/>
Santos Cordonfddf12e2014-09-25 15:08:57 -0700318 </intent-filter>
Mariusz Skamrac6db1292020-01-08 14:12:25 +0000319 <intent-filter>
320 <action android:name="android.bluetooth.IBluetoothLeCallControlCallback" />
321 </intent-filter>
Santos Cordonfddf12e2014-09-25 15:08:57 -0700322 </service>
323
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800324 <service android:name=".components.TelecomService"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700325 android:singleUser="true"
326 android:process="system"
327 android:exported="true">
Santos Cordonf987d1a2014-12-02 03:37:03 -0800328 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700329 <action android:name="android.telecom.ITelecomService"/>
Santos Cordonf987d1a2014-12-02 03:37:03 -0800330 </intent-filter>
331 </service>
332
Ben Gilad4937ff92013-12-12 12:05:37 -0800333 </application>
334</manifest>