blob: 941bd5e238bea5411d1f93ebe31b45bcd080cce6 [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_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"/>
Grant Menkecc4f8bb2024-07-02 16:06:55 -070048 <!-- Required to query the audio framework to determine if a notification sound should play. -->
49 <uses-permission android:name="android.permission.QUERY_AUDIO_STATE"/>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070050 <uses-permission android:name="android.permission.READ_CALL_LOG"/>
Tyler Gunn798e9612022-02-03 13:09:14 -080051 <!-- Required to check for direct to voicemail, to load custom ringtones for incoming calls
52 which are specified on a per contact basis, and also to determine user preferred
53 PhoneAccountHandles for outgoing calls. -->
54 <uses-permission android:name="android.permission.READ_CONTACTS"/>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070055 <uses-permission android:name="android.permission.READ_DEVICE_CONFIG"/>
56 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
Kurt Dresner933add52020-10-01 17:53:32 -070057 <uses-permission android:name="android.permission.READ_PROJECTION_STATE"/>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070058 <uses-permission android:name="android.permission.SEND_SMS"/>
59 <uses-permission android:name="android.permission.STOP_APP_SWITCHES"/>
60 <uses-permission android:name="android.permission.VIBRATE"/>
61 <uses-permission android:name="android.permission.WRITE_CALL_LOG"/>
62 <uses-permission android:name="android.permission.WAKE_LOCK"/>
63 <uses-permission android:name="android.permission.READ_BLOCKED_NUMBERS"/>
64 <uses-permission android:name="android.permission.WRITE_BLOCKED_NUMBERS"/>
65 <uses-permission android:name="android.permission.SUBSTITUTE_NOTIFICATION_APP_NAME"/>
Steve Elliott23f10832021-12-03 16:39:00 -050066 <uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
Tyler Gunn33bd8c42023-05-07 23:58:48 +000067 <uses-permission android:name="android.permission.USE_COLORIZED_NOTIFICATIONS"/>
68 <uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT"/>
Pranav Madapurmathee9fbfb2024-01-19 12:07:18 -080069 <uses-permission android:name="android.permission.ACCESS_LAST_KNOWN_CELL_ID"/>
Grace Jia383126c2022-11-30 15:27:20 -080070 <uses-permission android:name="android.permission.STATUS_BAR_SERVICE" />
Tyler Gunnd1607682014-08-15 11:29:12 -070071
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070072 <permission android:name="android.permission.BROADCAST_CALLLOG_INFO"
73 android:label="Broadcast the 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.PROCESS_CALLLOG_INFO"
77 android:label="Register to handle the broadcasted call type/duration information"
78 android:protectionLevel="signature|system"/>
Yong Jiang271b9ae2014-10-09 12:08:54 -050079
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070080 <permission android:name="android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION"
81 android:label="Broadcast 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.PROCESS_PHONE_ACCOUNT_REGISTRATION"
85 android:label="Process phone account registration"
86 android:protectionLevel="signature|system"/>
Santos Cordon4c778492015-02-27 15:13:35 -080087
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070088 <permission android:name="android.permission.HANDLE_CALL_INTENT"
89 android:label="Protects handling the call intent via the TelecomManager API."
90 android:protectionLevel="signature|system"/>
Tyler Gunnefe26992018-10-26 09:24:13 -070091
Santos Cordon581ec4a2014-12-15 09:59:26 -080092 <application android:label="@string/telecommAppLabel"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -070093 android:icon="@mipmap/ic_launcher_phone"
94 android:allowBackup="false"
95 android:supportsRtl="true"
96 android:process="system"
97 android:usesCleartextTraffic="false"
98 android:defaultToDeviceProtectedStorage="true"
99 android:directBootAware="true">
Santos Cordon10e68322013-12-12 16:06:56 -0800100
101 <!-- CALL vs CALL_PRIVILEGED vs CALL_EMERGENCY
102 We have three different intents through which a call can be initiated each with its
103 own behavior.
104 1) CALL - Expected from any third party app with CALL_PHONE permission. Through this
105 intent, an app can call any number except emergency numbers.
106 2) CALL_PRIVILEGED - Expected from the dialer app and requires CALL_PRIVILEGED
107 permission, which is only held by the system dialer and the emergency dialer at the
108 time of this writing. Through this intent, an app can call any number including
109 emergency numbers.
110 3) CALL_EMERGENCY - Expected from the emergency dialer app and requires CALL_PRIVILEGED
111 permission. Through this intent, an app can call *only* emergency numbers. -->
112
Mohamedc9261852016-02-05 14:10:17 -0800113 <!-- Activity that displays UI for managing blocked numbers. -->
114 <activity android:name=".settings.BlockedNumbersActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700115 android:label="@string/blocked_numbers"
116 android:configChanges="orientation|screenSize|keyboardHidden"
117 android:theme="@style/Theme.Telecom.BlockedNumbers"
118 android:process=":ui"
119 android:exported="true">
Abhijith Shastryb1308ec2016-02-29 16:26:09 -0800120 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700121 <action android:name="android.telecom.action.MANAGE_BLOCKED_NUMBERS"/>
122 <category android:name="android.intent.category.DEFAULT"/>
Abhijith Shastryb1308ec2016-02-29 16:26:09 -0800123 </intent-filter>
124 </activity>
Ruijie Bai20e49952017-12-25 10:55:48 +0800125
126 <activity android:name=".settings.CallBlockDisabledActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700127 android:configChanges="keyboardHidden|orientation|screenSize"
128 android:excludeFromRecents="true"
129 android:launchMode="singleInstance"
130 android:theme="@style/Theme.Telecomm.Transparent"
131 android:process=":ui">
Ruijie Bai20e49952017-12-25 10:55:48 +0800132 </activity>
133
Santos Cordon10e68322013-12-12 16:06:56 -0800134 <!-- Activity that starts the outgoing call process by listening to CALL intent which
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700135 contain contact information in the intent's data. CallActivity handles any data
136 URL with the schemes "tel", "sip", and "voicemail". It also handles URLs linked to
137 contacts provider entries. Any data not fitting the schema described is ignored. -->
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800138 <activity android:name=".components.UserCallActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700139 android:label="@string/userCallActivityLabel"
140 android:theme="@style/Theme.Telecomm.Transparent"
141 android:permission="android.permission.CALL_PHONE"
142 android:excludeFromRecents="true"
143 android:process=":ui"
Chinmay Dhodapkar27fa8b02022-07-18 12:26:30 -0700144 android:configChanges="orientation|screenSize|screenLayout|keyboardHidden|density|fontScale|keyboard|layoutDirection|locale|navigation|smallestScreenSize|touchscreen|uiMode"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700145 android:exported="true">
Santos Cordon10e68322013-12-12 16:06:56 -0800146 <!-- CALL action intent filters for the various ways of initiating an outgoing call. -->
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="tel"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800151 </intent-filter>
152 <!-- Specify an icon for SIP calls so that quick contacts widget shows a special SIP
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700153 icon for calls to SIP addresses. -->
Santos Cordon10e68322013-12-12 16:06:56 -0800154 <intent-filter android:icon="@drawable/ic_launcher_sip_call">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700155 <action android:name="android.intent.action.CALL"/>
156 <category android:name="android.intent.category.DEFAULT"/>
157 <data android:scheme="sip"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800158 </intent-filter>
159 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700160 <action android:name="android.intent.action.CALL"/>
161 <category android:name="android.intent.category.DEFAULT"/>
162 <data android:scheme="voicemail"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800163 </intent-filter>
164 <!-- Omit default category below so that all Intents sent to this filter must be
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700165 explicit. -->
Santos Cordon10e68322013-12-12 16:06:56 -0800166 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700167 <action android:name="android.intent.action.CALL"/>
168 <data android:mimeType="vnd.android.cursor.item/phone"/>
169 <data android:mimeType="vnd.android.cursor.item/phone_v2"/>
170 <data android:mimeType="vnd.android.cursor.item/person"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800171 </intent-filter>
172 </activity>
173
174 <!-- Works like CallActivity with CALL_PRIVILEGED instead of CALL intent.
175 CALL_PRIVILEGED allows calls to emergency numbers unlike CALL which disallows it.
176 Intent-sender must have the CALL_PRIVILEGED permission or the broadcast will not be
177 processed. High priority of 1000 is used in all intent filters to prevent anything but
178 the system from processing this intent (b/8871505). -->
179 <activity-alias android:name="PrivilegedCallActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700180 android:targetActivity=".components.UserCallActivity"
181 android:permission="android.permission.CALL_PRIVILEGED"
Ashwini Orugantiee1de982020-05-29 17:44:32 -0700182 android:exported="true"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700183 android:process=":ui">
Santos Cordon10e68322013-12-12 16:06:56 -0800184 <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="tel"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800188 </intent-filter>
189 <intent-filter android:priority="1000"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700190 android:icon="@drawable/ic_launcher_sip_call">
191 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
192 <category android:name="android.intent.category.DEFAULT"/>
193 <data android:scheme="sip"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800194 </intent-filter>
195 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700196 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
197 <category android:name="android.intent.category.DEFAULT"/>
198 <data android:scheme="voicemail"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800199 </intent-filter>
200 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700201 <action android:name="android.intent.action.CALL_PRIVILEGED"/>
202 <data android:mimeType="vnd.android.cursor.item/phone"/>
203 <data android:mimeType="vnd.android.cursor.item/phone_v2"/>
204 <data android:mimeType="vnd.android.cursor.item/person"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800205 </intent-filter>
206 </activity-alias>
207
208 <!-- Works like CallActivity with CALL_EMERGENCY instead of CALL intent.
209 CALL_EMERGENCY allows calls *only* to emergency numbers. Intent-sender must have the
210 CALL_PRIVILEGED permission or the broadcast will not be processed. High priority of
211 1000 is used in all intent filters to prevent anything but the system from processing
212 this intent (b/8871505). -->
Santos Cordondf399862014-08-06 04:39:15 -0700213 <!-- TODO: Is there really a notion of an emergency SIP number? If not, can
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700214 that scheme be removed from this activity? -->
Santos Cordon10e68322013-12-12 16:06:56 -0800215 <activity-alias android:name="EmergencyCallActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700216 android:targetActivity=".components.UserCallActivity"
217 android:permission="android.permission.CALL_PRIVILEGED"
Ashwini Orugantiee1de982020-05-29 17:44:32 -0700218 android:exported="true"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700219 android:process=":ui">
Santos Cordon10e68322013-12-12 16:06:56 -0800220 <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="tel"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800224 </intent-filter>
225 <intent-filter android:priority="1000"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700226 android:icon="@drawable/ic_launcher_sip_call">
227 <action android:name="android.intent.action.CALL_EMERGENCY"/>
228 <category android:name="android.intent.category.DEFAULT"/>
229 <data android:scheme="sip"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800230 </intent-filter>
231 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700232 <action android:name="android.intent.action.CALL_EMERGENCY"/>
233 <category android:name="android.intent.category.DEFAULT"/>
234 <data android:scheme="voicemail"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800235 </intent-filter>
236 <intent-filter android:priority="1000">
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700237 <action android:name="android.intent.action.CALL_EMERGENCY"/>
238 <data android:mimeType="vnd.android.cursor.item/phone"/>
239 <data android:mimeType="vnd.android.cursor.item/phone_v2"/>
240 <data android:mimeType="vnd.android.cursor.item/person"/>
Santos Cordon10e68322013-12-12 16:06:56 -0800241 </intent-filter>
242 </activity-alias>
243
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700244 <receiver android:name=".components.TelecomBroadcastReceiver"
245 android:exported="false"
246 android:process="system">
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700247 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700248 <action android:name="com.android.server.telecom.ACTION_CLEAR_MISSED_CALLS"/>
249 <action android:name="com.android.server.telecom.ACTION_CALL_BACK_FROM_NOTIFICATION"/>
250 <action android:name="com.android.server.telecom.ACTION_SEND_SMS_FROM_NOTIFICATION"/>
251 <action android:name="com.android.server.telecom.ACTION_ANSWER_FROM_NOTIFICATION"/>
252 <action android:name="com.android.server.telecom.ACTION_REJECT_FROM_NOTIFICATION"/>
253 <action android:name="com.android.server.telecom.PROCEED_WITH_CALL"/>
254 <action android:name="com.android.server.telecom.CANCEL_CALL"/>
255 <action android:name="com.android.server.telecom.PROCEED_WITH_REDIRECTED_CALL"/>
256 <action android:name="com.android.server.telecom.CANCEL_REDIRECTED_CALL"/>
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700257 </intent-filter>
258 </receiver>
259
tonyzhu8ba94c52018-10-23 15:37:04 +0800260 <receiver android:name=".components.AppUninstallBroadcastReceiver"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700261 android:process="system"
262 android:exported="true">
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700263 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700264 <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED"/>
265 <data android:scheme="package"/>
Nancy Chen6f5c08d2014-09-23 16:54:05 -0700266 </intent-filter>
267 </receiver>
Tyler Gunnd900ce62014-08-13 11:40:59 -0700268
Andrew Leeaf22dd12015-02-25 17:40:11 -0800269 <activity android:name=".RespondViaSmsSettings"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700270 android:label="@string/respond_via_sms_setting_title"
271 android:configChanges="orientation|screenSize|keyboardHidden"
Thomas Stuartf84dd7e2022-04-04 12:37:46 -0700272 android:theme="@style/CallSettingsWithoutDividerTheme"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700273 android:process=":ui"
274 android:exported="true">
Ihab Awadff7493a2014-06-10 13:47:44 -0700275 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700276 <action android:name="android.intent.action.MAIN"/>
277 <action android:name="android.telecom.action.SHOW_RESPOND_VIA_SMS_SETTINGS"/>
278 <category android:name="android.intent.category.DEFAULT"/>
Ihab Awadff7493a2014-06-10 13:47:44 -0700279 </intent-filter>
280 </activity>
Ihab Awad104f8062014-07-17 11:29:35 -0700281
Santos Cordon55344342015-05-04 13:05:30 -0700282 <activity android:name=".settings.EnableAccountPreferenceActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700283 android:label="@string/enable_account_preference_title"
284 android:configChanges="orientation|screenSize|keyboardHidden"
Shen Line34d7132022-10-12 16:11:24 +0800285 android:theme="@style/Theme.Telecom.EnableAccount"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700286 android:process=":ui"
287 android:exported="true">
Santos Cordon55344342015-05-04 13:05:30 -0700288 <intent-filter>
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700289 <action android:name="android.intent.action.MAIN"/>
290 <category android:name="android.intent.category.DEFAULT"/>
Santos Cordon55344342015-05-04 13:05:30 -0700291 </intent-filter>
292 </activity>
293
Ihab Awad78a5e6b2015-02-06 10:13:05 -0800294 <activity android:name=".components.ErrorDialogActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700295 android:configChanges="orientation|screenSize|keyboardHidden"
296 android:excludeFromRecents="true"
297 android:launchMode="singleInstance"
298 android:theme="@style/Theme.Telecomm.Transparent"
299 android:process=":ui">
Yorke Leed7255872014-08-25 15:03:51 -0700300 </activity>
301
Tyler Gunnbbd78a72017-04-30 14:16:07 -0700302 <activity android:name=".ui.ConfirmCallDialogActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700303 android:configChanges="orientation|screenSize|keyboardHidden"
304 android:excludeFromRecents="true"
305 android:launchMode="singleInstance"
306 android:theme="@style/Theme.Telecomm.Transparent"
307 android:process=":ui">
Tyler Gunnbbd78a72017-04-30 14:16:07 -0700308 </activity>
309
sqiane976e682018-10-05 18:51:40 -0700310 <activity android:name=".ui.CallRedirectionTimeoutDialogActivity"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700311 android:configChanges="orientation|screenSize|keyboardHidden"
312 android:excludeFromRecents="true"
313 android:launchMode="singleInstance"
314 android:theme="@style/Theme.Telecomm.Transparent"
315 android:process=":ui">
sqiane976e682018-10-05 18:51:40 -0700316 </activity>
317
Tyler Gunn47eb3fe2018-03-12 14:38:47 -0700318 <activity android:name=".ui.TelecomDeveloperMenu"
Ashwini Orugantic51ebdf2020-03-23 16:54:51 -0700319 android:label="@string/developer_title"
320 android:exported="false"
321 android:process=":ui"/>
Yorke Leeb5c5d442015-04-27 15:21:53 -0700322
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>