blob: 648b4a9cc2d0898d486a040a9d5aab4904d07fb4 [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
Tyler Gunna7d57ac2022-09-27 15:19:05 -070026 <uses-permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"/>
Bryce Lee41045b42015-08-05 13:10:39 -070027
Ben Gilad4937ff92013-12-12 12:05:37 -080028 <!-- Prevents the activity manager from delaying any activity-start
29 requests by this package, including requests immediately after
30 the user presses "home". -->
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070031 <uses-permission android:name="android.permission.BIND_CONNECTION_SERVICE"/>
32 <uses-permission android:name="android.permission.BIND_INCALL_SERVICE"/>
33 <uses-permission android:name="android.permission.BLUETOOTH"/>
34 <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
Rahul Sabnis5225f202021-12-23 17:31:31 -080035 <uses-permission android:name="android.permission.BLUETOOTH_PRIVILEGED"/>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070036 <uses-permission android:name="android.permission.BROADCAST_CALLLOG_INFO"/>
37 <uses-permission android:name="android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION"/>
38 <uses-permission android:name="android.permission.CALL_PRIVILEGED"/>
39 <uses-permission android:name="android.permission.HANDLE_CALL_INTENT"/>
40 <uses-permission android:name="android.permission.HANDLE_CAR_MODE_CHANGES"/>
41 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/>
42 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL"/>
43 <uses-permission android:name="android.permission.MANAGE_USERS"/>
44 <uses-permission android:name="android.permission.MANAGE_ROLE_HOLDERS"/>
45 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
Tyler Gunn5d66e1d2018-01-25 20:22:49 -080046 <!-- Required to determine source of ongoing audio recordings. -->
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070047 <uses-permission android:name="android.permission.MODIFY_AUDIO_ROUTING"/>
48 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE"/>
49 <uses-permission android:name="android.permission.READ_CALL_LOG"/>
Tyler Gunn798e9612022-02-03 13:09:14 -080050 <!-- Required to check for direct to voicemail, to load custom ringtones for incoming calls
51 which are specified on a per contact basis, and also to determine user preferred
52 PhoneAccountHandles for outgoing calls. -->
53 <uses-permission android:name="android.permission.READ_CONTACTS"/>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070054 <uses-permission android:name="android.permission.READ_DEVICE_CONFIG"/>
55 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
Kurt Dresner933add52020-10-01 17:53:32 -070056 <uses-permission android:name="android.permission.READ_PROJECTION_STATE"/>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070057 <uses-permission android:name="android.permission.SEND_SMS"/>
58 <uses-permission android:name="android.permission.STOP_APP_SWITCHES"/>
59 <uses-permission android:name="android.permission.VIBRATE"/>
60 <uses-permission android:name="android.permission.WRITE_CALL_LOG"/>
61 <uses-permission android:name="android.permission.WAKE_LOCK"/>
62 <uses-permission android:name="android.permission.READ_BLOCKED_NUMBERS"/>
63 <uses-permission android:name="android.permission.WRITE_BLOCKED_NUMBERS"/>
64 <uses-permission android:name="android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME"/>
Steve Elliott23f10832021-12-03 16:39:00 -050065 <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
Sooraj Sasindran8330df02021-10-26 02:18:16 -070066 <uses-permission android:name="com.android.phone.permission.ACCESS_LAST_KNOWN_CELL_ID"/>
Tyler Gunnd1607682014-08-15 11:29:12 -070067
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070068 <permission android:name="android.permission.BROADCAST_CALLLOG_INFO"
69 android:label="Broadcast the call type/duration information"
70 android:protectionLevel="signature|system"/>
Yong Jiang271b9ae2014-10-09 12:08:54 -050071
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070072 <permission android:name="android.permission.PROCESS_CALLLOG_INFO"
73 android:label="Register to handle the broadcasted call type/duration information"
74 android:protectionLevel="signature|system"/>
Yong Jiang271b9ae2014-10-09 12:08:54 -050075
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070076 <permission android:name="android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION"
77 android:label="Broadcast phone account registration"
78 android:protectionLevel="signature|system"/>
Santos Cordon4c778492015-02-27 15:13:35 -080079
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070080 <permission android:name="android.permission.PROCESS_PHONE_ACCOUNT_REGISTRATION"
81 android:label="Process phone account registration"
82 android:protectionLevel="signature|system"/>
Santos Cordon4c778492015-02-27 15:13:35 -080083
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070084 <permission android:name="android.permission.HANDLE_CALL_INTENT"
85 android:label="Protects handling the call intent via the TelecomManager API."
86 android:protectionLevel="signature|system"/>
Tyler Gunnefe26992018-10-26 09:24:13 -070087
Santos Cordon581ec4a2014-12-15 09:59:26 -080088 <application android:label="@string/telecommAppLabel"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070089 android:icon="@mipmap/ic_launcher_phone"
90 android:allowBackup="false"
91 android:supportsRtl="true"
92 android:process="system"
93 android:usesCleartextTraffic="false"
94 android:defaultToDeviceProtectedStorage="true"
95 android:directBootAware="true">
Santos Cordon10e68322013-12-12 16:06:56 -080096
97 <!-- CALL vs CALL_PRIVILEGED vs CALL_EMERGENCY
98 We have three different intents through which a call can be initiated each with its
99 own behavior.
100 1) CALL - Expected from any third party app with CALL_PHONE permission. Through this
101 intent, an app can call any number except emergency numbers.
102 2) CALL_PRIVILEGED - Expected from the dialer app and requires CALL_PRIVILEGED
103 permission, which is only held by the system dialer and the emergency dialer at the
104 time of this writing. Through this intent, an app can call any number including
105 emergency numbers.
106 3) CALL_EMERGENCY - Expected from the emergency dialer app and requires CALL_PRIVILEGED
107 permission. Through this intent, an app can call *only* emergency numbers. -->
108
Mohamedc9261852016-02-05 14:10:17 -0800109 <!-- Activity that displays UI for managing blocked numbers. -->
110 <activity android:name=".settings.BlockedNumbersActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700111 android:label="@string/blocked_numbers"
112 android:configChanges="orientation|screenSize|keyboardHidden"
113 android:theme="@style/Theme.Telecom.BlockedNumbers"
114 android:process=":ui"
115 android:exported="true">
Abhijith Shastryb1308ec2016-02-29 16:26:09 -0800116 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700117 <action android:name="android.telecom.action.MANAGE_BLOCKED_NUMBERS"/>
118 <category android:name="android.intent.category.DEFAULT"/>
Abhijith Shastryb1308ec2016-02-29 16:26:09 -0800119 </intent-filter>
120 </activity>
Ruijie Bai20e49952017-12-25 10:55:48 +0800121
122 <activity android:name=".settings.CallBlockDisabledActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700123 android:configChanges="keyboardHidden|orientation|screenSize"
124 android:excludeFromRecents="true"
125 android:launchMode="singleInstance"
126 android:theme="@style/Theme.Telecomm.Transparent"
127 android:process=":ui">
Ruijie Bai20e49952017-12-25 10:55:48 +0800128 </activity>
129
Santos Cordon10e68322013-12-12 16:06:56 -0800130 <!-- Activity that starts the outgoing call process by listening to CALL intent which
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700131 contain contact information in the intent's data. CallActivity handles any data
132 URL with the schemes "tel", "sip", and "voicemail". It also handles URLs linked to
133 contacts provider entries. Any data not fitting the schema described is ignored. -->
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800134 <activity android:name=".components.UserCallActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700135 android:label="@string/userCallActivityLabel"
136 android:theme="@style/Theme.Telecomm.Transparent"
137 android:permission="android.permission.CALL_PHONE"
138 android:excludeFromRecents="true"
139 android:process=":ui"
Chinmay Dhodapkar27fa8b02022-07-18 12:26:30 -0700140 android:configChanges="orientation|screenSize|screenLayout|keyboardHidden|density|fontScale|keyboard|layoutDirection|locale|navigation|smallestScreenSize|touchscreen|uiMode"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700141 android:exported="true">
Santos Cordon10e68322013-12-12 16:06:56 -0800142 <!-- CALL action intent filters for the various ways of initiating an outgoing call. -->
143 <intent-filter>
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="tel"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800147 </intent-filter>
148 <!-- Specify an icon for SIP calls so that quick contacts widget shows a special SIP
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700149 icon for calls to SIP addresses. -->
Santos Cordon10e68322013-12-12 16:06:56 -0800150 <intent-filter android:icon="@drawable/ic_launcher_sip_call">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700151 <action android:name="android.intent.action.CALL"/>
152 <category android:name="android.intent.category.DEFAULT"/>
153 <data android:scheme="sip"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800154 </intent-filter>
155 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700156 <action android:name="android.intent.action.CALL"/>
157 <category android:name="android.intent.category.DEFAULT"/>
158 <data android:scheme="voicemail"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800159 </intent-filter>
160 <!-- Omit default category below so that all Intents sent to this filter must be
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700161 explicit. -->
Santos Cordon10e68322013-12-12 16:06:56 -0800162 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700163 <action android:name="android.intent.action.CALL"/>
164 <data android:mimeType="vnd.android.cursor.item/phone"/>
165 <data android:mimeType="vnd.android.cursor.item/phone_v2"/>
166 <data android:mimeType="vnd.android.cursor.item/person"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800167 </intent-filter>
168 </activity>
169
170 <!-- Works like CallActivity with CALL_PRIVILEGED instead of CALL intent.
171 CALL_PRIVILEGED allows calls to emergency numbers unlike CALL which disallows it.
172 Intent-sender must have the CALL_PRIVILEGED permission or the broadcast will not be
173 processed. High priority of 1000 is used in all intent filters to prevent anything but
174 the system from processing this intent (b/8871505). -->
175 <activity-alias android:name="PrivilegedCallActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700176 android:targetActivity=".components.UserCallActivity"
177 android:permission="android.permission.CALL_PRIVILEGED"
Ashwini Orugantiee1de982020-05-29 17:44:32 -0700178 android:exported="true"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700179 android:process=":ui">
Santos Cordon10e68322013-12-12 16:06:56 -0800180 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700181 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
182 <category android:name="android.intent.category.DEFAULT"/>
183 <data android:scheme="tel"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800184 </intent-filter>
185 <intent-filter android:priority="1000"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700186 android:icon="@drawable/ic_launcher_sip_call">
187 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
188 <category android:name="android.intent.category.DEFAULT"/>
189 <data android:scheme="sip"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800190 </intent-filter>
191 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700192 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
193 <category android:name="android.intent.category.DEFAULT"/>
194 <data android:scheme="voicemail"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800195 </intent-filter>
196 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700197 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
198 <data android:mimeType="vnd.android.cursor.item/phone"/>
199 <data android:mimeType="vnd.android.cursor.item/phone_v2"/>
200 <data android:mimeType="vnd.android.cursor.item/person"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800201 </intent-filter>
202 </activity-alias>
203
204 <!-- Works like CallActivity with CALL_EMERGENCY instead of CALL intent.
205 CALL_EMERGENCY allows calls *only* to emergency numbers. Intent-sender must have the
206 CALL_PRIVILEGED permission or the broadcast will not be processed. High priority of
207 1000 is used in all intent filters to prevent anything but the system from processing
208 this intent (b/8871505). -->
Santos Cordondf399862014-08-06 04:39:15 -0700209 <!-- TODO: Is there really a notion of an emergency SIP number? If not, can
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700210 that scheme be removed from this activity? -->
Santos Cordon10e68322013-12-12 16:06:56 -0800211 <activity-alias android:name="EmergencyCallActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700212 android:targetActivity=".components.UserCallActivity"
213 android:permission="android.permission.CALL_PRIVILEGED"
Ashwini Orugantiee1de982020-05-29 17:44:32 -0700214 android:exported="true"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700215 android:process=":ui">
Santos Cordon10e68322013-12-12 16:06:56 -0800216 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700217 <action android:name="android.intent.action.CALL_EMERGENCY"/>
218 <category android:name="android.intent.category.DEFAULT"/>
219 <data android:scheme="tel"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800220 </intent-filter>
221 <intent-filter android:priority="1000"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700222 android:icon="@drawable/ic_launcher_sip_call">
223 <action android:name="android.intent.action.CALL_EMERGENCY"/>
224 <category android:name="android.intent.category.DEFAULT"/>
225 <data android:scheme="sip"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800226 </intent-filter>
227 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700228 <action android:name="android.intent.action.CALL_EMERGENCY"/>
229 <category android:name="android.intent.category.DEFAULT"/>
230 <data android:scheme="voicemail"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800231 </intent-filter>
232 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700233 <action android:name="android.intent.action.CALL_EMERGENCY"/>
234 <data android:mimeType="vnd.android.cursor.item/phone"/>
235 <data android:mimeType="vnd.android.cursor.item/phone_v2"/>
236 <data android:mimeType="vnd.android.cursor.item/person"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800237 </intent-filter>
238 </activity-alias>
239
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700240 <receiver android:name=".components.TelecomBroadcastReceiver"
241 android:exported="false"
242 android:process="system">
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700243 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700244 <action android:name="com.android.server.telecom.ACTION_CLEAR_MISSED_CALLS"/>
245 <action android:name="com.android.server.telecom.ACTION_CALL_BACK_FROM_NOTIFICATION"/>
246 <action android:name="com.android.server.telecom.ACTION_SEND_SMS_FROM_NOTIFICATION"/>
247 <action android:name="com.android.server.telecom.ACTION_ANSWER_FROM_NOTIFICATION"/>
248 <action android:name="com.android.server.telecom.ACTION_REJECT_FROM_NOTIFICATION"/>
249 <action android:name="com.android.server.telecom.PROCEED_WITH_CALL"/>
250 <action android:name="com.android.server.telecom.CANCEL_CALL"/>
251 <action android:name="com.android.server.telecom.PROCEED_WITH_REDIRECTED_CALL"/>
252 <action android:name="com.android.server.telecom.CANCEL_REDIRECTED_CALL"/>
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700253 </intent-filter>
254 </receiver>
255
tonyzhu8ba94c52018-10-23 15:37:04 +0800256 <receiver android:name=".components.AppUninstallBroadcastReceiver"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700257 android:process="system"
258 android:exported="true">
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700259 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700260 <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED"/>
261 <data android:scheme="package"/>
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700262 </intent-filter>
263 </receiver>
Tyler Gunnd900ce62014-08-13 11:40:59 -0700264
Andrew Leeaf22dd12015-02-25 17:40:11 -0800265 <activity android:name=".RespondViaSmsSettings"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700266 android:label="@string/respond_via_sms_setting_title"
267 android:configChanges="orientation|screenSize|keyboardHidden"
Thomas Stuartf84dd7e2022-04-04 12:37:46 -0700268 android:theme="@style/CallSettingsWithoutDividerTheme"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700269 android:process=":ui"
270 android:exported="true">
Ihab Awadff7493a2014-06-10 13:47:44 -0700271 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700272 <action android:name="android.intent.action.MAIN"/>
273 <action android:name="android.telecom.action.SHOW_RESPOND_VIA_SMS_SETTINGS"/>
274 <category android:name="android.intent.category.DEFAULT"/>
Ihab Awadff7493a2014-06-10 13:47:44 -0700275 </intent-filter>
276 </activity>
Ihab Awad104f8062014-07-17 11:29:35 -0700277
Santos Cordon55344342015-05-04 13:05:30 -0700278 <activity android:name=".settings.EnableAccountPreferenceActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700279 android:label="@string/enable_account_preference_title"
280 android:configChanges="orientation|screenSize|keyboardHidden"
Shen Line34d7132022-10-12 16:11:24 +0800281 android:theme="@style/Theme.Telecom.EnableAccount"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700282 android:process=":ui"
283 android:exported="true">
Santos Cordon55344342015-05-04 13:05:30 -0700284 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700285 <action android:name="android.intent.action.MAIN"/>
286 <category android:name="android.intent.category.DEFAULT"/>
Santos Cordon55344342015-05-04 13:05:30 -0700287 </intent-filter>
288 </activity>
289
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800290 <activity android:name=".components.ErrorDialogActivity"
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">
Yorke Leed7255872014-08-25 15:03:51 -0700296 </activity>
297
Tyler Gunnbbd78a72017-04-30 14:16:07 -0700298 <activity android:name=".ui.ConfirmCallDialogActivity"
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">
Tyler Gunnbbd78a72017-04-30 14:16:07 -0700304 </activity>
305
sqiane976e682018-10-05 18:51:40 -0700306 <activity android:name=".ui.CallRedirectionTimeoutDialogActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700307 android:configChanges="orientation|screenSize|keyboardHidden"
308 android:excludeFromRecents="true"
309 android:launchMode="singleInstance"
310 android:theme="@style/Theme.Telecomm.Transparent"
311 android:process=":ui">
sqiane976e682018-10-05 18:51:40 -0700312 </activity>
313
Tyler Gunn47eb3fe2018-03-12 14:38:47 -0700314 <activity android:name=".ui.TelecomDeveloperMenu"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700315 android:label="@string/developer_title"
316 android:exported="false"
317 android:process=":ui"/>
Yorke Leeb5c5d442015-04-27 15:21:53 -0700318
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800319 <service android:name=".components.BluetoothPhoneService"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700320 android:singleUser="true"
321 android:process="system"
322 android:exported="true">
Santos Cordonfddf12e2014-09-25 15:08:57 -0700323 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700324 <action android:name="android.bluetooth.IBluetoothHeadsetPhone"/>
Santos Cordonfddf12e2014-09-25 15:08:57 -0700325 </intent-filter>
Mariusz Skamrac6db1292020-01-08 14:12:25 +0000326 <intent-filter>
327 <action android:name="android.bluetooth.IBluetoothLeCallControlCallback" />
328 </intent-filter>
Santos Cordonfddf12e2014-09-25 15:08:57 -0700329 </service>
330
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800331 <service android:name=".components.TelecomService"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700332 android:singleUser="true"
333 android:process="system"
334 android:exported="true">
Santos Cordonf987d1a2014-12-02 03:37:03 -0800335 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700336 <action android:name="android.telecom.ITelecomService"/>
Santos Cordonf987d1a2014-12-02 03:37:03 -0800337 </intent-filter>
338 </service>
339
Ben Gilad4937ff92013-12-12 12:05:37 -0800340 </application>
341</manifest>