Ben Gilad | 4937ff9 | 2013-12-12 12:05:37 -0800 | [diff] [blame] | 1 | <?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 Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 18 | 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 Cordon | 3e3b541 | 2013-12-16 17:33:45 -0800 | [diff] [blame] | 22 | |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 23 | <protected-broadcast android:name="android.intent.action.SHOW_MISSED_CALLS_NOTIFICATION"/> |
| 24 | <protected-broadcast android:name="com.android.server.telecom.MESSAGE_SENT"/> |
Hall Liu | af74a5c | 2018-09-19 18:05:51 -0700 | [diff] [blame] | 25 | |
Bryce Lee | 41045b4 | 2015-08-05 13:10:39 -0700 | [diff] [blame] | 26 | |
Ben Gilad | 4937ff9 | 2013-12-12 12:05:37 -0800 | [diff] [blame] | 27 | <!-- Prevents the activity manager from delaying any activity-start |
| 28 | requests by this package, including requests immediately after |
| 29 | the user presses "home". --> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 30 | <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 Gunn | 5d66e1d | 2018-01-25 20:22:49 -0800 | [diff] [blame] | 44 | <!-- Required to determine source of ongoing audio recordings. --> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 45 | <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 Dresner | 933add5 | 2020-10-01 17:53:32 -0700 | [diff] [blame^] | 50 | <uses-permission android:name="android.permission.READ_PROJECTION_STATE"/> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 51 | <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"/> |
Tyler Gunn | d160768 | 2014-08-15 11:29:12 -0700 | [diff] [blame] | 59 | |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 60 | <permission android:name="android.permission.BROADCAST_CALLLOG_INFO" |
| 61 | android:label="Broadcast the call type/duration information" |
| 62 | android:protectionLevel="signature|system"/> |
Yong Jiang | 271b9ae | 2014-10-09 12:08:54 -0500 | [diff] [blame] | 63 | |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 64 | <permission android:name="android.permission.PROCESS_CALLLOG_INFO" |
| 65 | android:label="Register to handle the broadcasted call type/duration information" |
| 66 | android:protectionLevel="signature|system"/> |
Yong Jiang | 271b9ae | 2014-10-09 12:08:54 -0500 | [diff] [blame] | 67 | |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 68 | <permission android:name="android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION" |
| 69 | android:label="Broadcast phone account registration" |
| 70 | android:protectionLevel="signature|system"/> |
Santos Cordon | 4c77849 | 2015-02-27 15:13:35 -0800 | [diff] [blame] | 71 | |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 72 | <permission android:name="android.permission.PROCESS_PHONE_ACCOUNT_REGISTRATION" |
| 73 | android:label="Process phone account registration" |
| 74 | android:protectionLevel="signature|system"/> |
Santos Cordon | 4c77849 | 2015-02-27 15:13:35 -0800 | [diff] [blame] | 75 | |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 76 | <permission android:name="android.permission.HANDLE_CALL_INTENT" |
| 77 | android:label="Protects handling the call intent via the TelecomManager API." |
| 78 | android:protectionLevel="signature|system"/> |
Tyler Gunn | efe2699 | 2018-10-26 09:24:13 -0700 | [diff] [blame] | 79 | |
Santos Cordon | 581ec4a | 2014-12-15 09:59:26 -0800 | [diff] [blame] | 80 | <application android:label="@string/telecommAppLabel" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 81 | android:icon="@mipmap/ic_launcher_phone" |
| 82 | android:allowBackup="false" |
| 83 | android:supportsRtl="true" |
| 84 | android:process="system" |
| 85 | android:usesCleartextTraffic="false" |
| 86 | android:defaultToDeviceProtectedStorage="true" |
| 87 | android:directBootAware="true"> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 88 | |
| 89 | <!-- CALL vs CALL_PRIVILEGED vs CALL_EMERGENCY |
| 90 | We have three different intents through which a call can be initiated each with its |
| 91 | own behavior. |
| 92 | 1) CALL - Expected from any third party app with CALL_PHONE permission. Through this |
| 93 | intent, an app can call any number except emergency numbers. |
| 94 | 2) CALL_PRIVILEGED - Expected from the dialer app and requires CALL_PRIVILEGED |
| 95 | permission, which is only held by the system dialer and the emergency dialer at the |
| 96 | time of this writing. Through this intent, an app can call any number including |
| 97 | emergency numbers. |
| 98 | 3) CALL_EMERGENCY - Expected from the emergency dialer app and requires CALL_PRIVILEGED |
| 99 | permission. Through this intent, an app can call *only* emergency numbers. --> |
| 100 | |
Mohamed | c926185 | 2016-02-05 14:10:17 -0800 | [diff] [blame] | 101 | <!-- Activity that displays UI for managing blocked numbers. --> |
| 102 | <activity android:name=".settings.BlockedNumbersActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 103 | android:label="@string/blocked_numbers" |
| 104 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 105 | android:theme="@style/Theme.Telecom.BlockedNumbers" |
| 106 | android:process=":ui" |
| 107 | android:exported="true"> |
Abhijith Shastry | b1308ec | 2016-02-29 16:26:09 -0800 | [diff] [blame] | 108 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 109 | <action android:name="android.telecom.action.MANAGE_BLOCKED_NUMBERS"/> |
| 110 | <category android:name="android.intent.category.DEFAULT"/> |
Abhijith Shastry | b1308ec | 2016-02-29 16:26:09 -0800 | [diff] [blame] | 111 | </intent-filter> |
| 112 | </activity> |
Ruijie Bai | 20e4995 | 2017-12-25 10:55:48 +0800 | [diff] [blame] | 113 | |
| 114 | <activity android:name=".settings.CallBlockDisabledActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 115 | android:configChanges="keyboardHidden|orientation|screenSize" |
| 116 | android:excludeFromRecents="true" |
| 117 | android:launchMode="singleInstance" |
| 118 | android:theme="@style/Theme.Telecomm.Transparent" |
| 119 | android:process=":ui"> |
Ruijie Bai | 20e4995 | 2017-12-25 10:55:48 +0800 | [diff] [blame] | 120 | </activity> |
| 121 | |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 122 | <!-- Activity that starts the outgoing call process by listening to CALL intent which |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 123 | contain contact information in the intent's data. CallActivity handles any data |
| 124 | URL with the schemes "tel", "sip", and "voicemail". It also handles URLs linked to |
| 125 | contacts provider entries. Any data not fitting the schema described is ignored. --> |
Ihab Awad | 78a5e6b | 2015-02-06 10:13:05 -0800 | [diff] [blame] | 126 | <activity android:name=".components.UserCallActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 127 | android:label="@string/userCallActivityLabel" |
| 128 | android:theme="@style/Theme.Telecomm.Transparent" |
| 129 | android:permission="android.permission.CALL_PHONE" |
| 130 | android:excludeFromRecents="true" |
| 131 | android:process=":ui" |
| 132 | android:exported="true"> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 133 | <!-- CALL action intent filters for the various ways of initiating an outgoing call. --> |
| 134 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 135 | <action android:name="android.intent.action.CALL"/> |
| 136 | <category android:name="android.intent.category.DEFAULT"/> |
| 137 | <data android:scheme="tel"/> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 138 | </intent-filter> |
| 139 | <!-- Specify an icon for SIP calls so that quick contacts widget shows a special SIP |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 140 | icon for calls to SIP addresses. --> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 141 | <intent-filter android:icon="@drawable/ic_launcher_sip_call"> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 142 | <action android:name="android.intent.action.CALL"/> |
| 143 | <category android:name="android.intent.category.DEFAULT"/> |
| 144 | <data android:scheme="sip"/> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 145 | </intent-filter> |
| 146 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 147 | <action android:name="android.intent.action.CALL"/> |
| 148 | <category android:name="android.intent.category.DEFAULT"/> |
| 149 | <data android:scheme="voicemail"/> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 150 | </intent-filter> |
| 151 | <!-- Omit default category below so that all Intents sent to this filter must be |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 152 | explicit. --> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 153 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 154 | <action android:name="android.intent.action.CALL"/> |
| 155 | <data android:mimeType="vnd.android.cursor.item/phone"/> |
| 156 | <data android:mimeType="vnd.android.cursor.item/phone_v2"/> |
| 157 | <data android:mimeType="vnd.android.cursor.item/person"/> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 158 | </intent-filter> |
| 159 | </activity> |
| 160 | |
| 161 | <!-- Works like CallActivity with CALL_PRIVILEGED instead of CALL intent. |
| 162 | CALL_PRIVILEGED allows calls to emergency numbers unlike CALL which disallows it. |
| 163 | Intent-sender must have the CALL_PRIVILEGED permission or the broadcast will not be |
| 164 | processed. High priority of 1000 is used in all intent filters to prevent anything but |
| 165 | the system from processing this intent (b/8871505). --> |
| 166 | <activity-alias android:name="PrivilegedCallActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 167 | android:targetActivity=".components.UserCallActivity" |
| 168 | android:permission="android.permission.CALL_PRIVILEGED" |
Ashwini Oruganti | ee1de98 | 2020-05-29 17:44:32 -0700 | [diff] [blame] | 169 | android:exported="true" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 170 | android:process=":ui"> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 171 | <intent-filter android:priority="1000"> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 172 | <action android:name="android.intent.action.CALL_PRIVILEGED"/> |
| 173 | <category android:name="android.intent.category.DEFAULT"/> |
| 174 | <data android:scheme="tel"/> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 175 | </intent-filter> |
| 176 | <intent-filter android:priority="1000" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 177 | android:icon="@drawable/ic_launcher_sip_call"> |
| 178 | <action android:name="android.intent.action.CALL_PRIVILEGED"/> |
| 179 | <category android:name="android.intent.category.DEFAULT"/> |
| 180 | <data android:scheme="sip"/> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 181 | </intent-filter> |
| 182 | <intent-filter android:priority="1000"> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 183 | <action android:name="android.intent.action.CALL_PRIVILEGED"/> |
| 184 | <category android:name="android.intent.category.DEFAULT"/> |
| 185 | <data android:scheme="voicemail"/> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 186 | </intent-filter> |
| 187 | <intent-filter android:priority="1000"> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 188 | <action android:name="android.intent.action.CALL_PRIVILEGED"/> |
| 189 | <data android:mimeType="vnd.android.cursor.item/phone"/> |
| 190 | <data android:mimeType="vnd.android.cursor.item/phone_v2"/> |
| 191 | <data android:mimeType="vnd.android.cursor.item/person"/> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 192 | </intent-filter> |
| 193 | </activity-alias> |
| 194 | |
| 195 | <!-- Works like CallActivity with CALL_EMERGENCY instead of CALL intent. |
| 196 | CALL_EMERGENCY allows calls *only* to emergency numbers. Intent-sender must have the |
| 197 | CALL_PRIVILEGED permission or the broadcast will not be processed. High priority of |
| 198 | 1000 is used in all intent filters to prevent anything but the system from processing |
| 199 | this intent (b/8871505). --> |
Santos Cordon | df39986 | 2014-08-06 04:39:15 -0700 | [diff] [blame] | 200 | <!-- TODO: Is there really a notion of an emergency SIP number? If not, can |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 201 | that scheme be removed from this activity? --> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 202 | <activity-alias android:name="EmergencyCallActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 203 | android:targetActivity=".components.UserCallActivity" |
| 204 | android:permission="android.permission.CALL_PRIVILEGED" |
Ashwini Oruganti | ee1de98 | 2020-05-29 17:44:32 -0700 | [diff] [blame] | 205 | android:exported="true" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 206 | android:process=":ui"> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 207 | <intent-filter android:priority="1000"> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 208 | <action android:name="android.intent.action.CALL_EMERGENCY"/> |
| 209 | <category android:name="android.intent.category.DEFAULT"/> |
| 210 | <data android:scheme="tel"/> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 211 | </intent-filter> |
| 212 | <intent-filter android:priority="1000" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 213 | android:icon="@drawable/ic_launcher_sip_call"> |
| 214 | <action android:name="android.intent.action.CALL_EMERGENCY"/> |
| 215 | <category android:name="android.intent.category.DEFAULT"/> |
| 216 | <data android:scheme="sip"/> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 217 | </intent-filter> |
| 218 | <intent-filter android:priority="1000"> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 219 | <action android:name="android.intent.action.CALL_EMERGENCY"/> |
| 220 | <category android:name="android.intent.category.DEFAULT"/> |
| 221 | <data android:scheme="voicemail"/> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 222 | </intent-filter> |
| 223 | <intent-filter android:priority="1000"> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 224 | <action android:name="android.intent.action.CALL_EMERGENCY"/> |
| 225 | <data android:mimeType="vnd.android.cursor.item/phone"/> |
| 226 | <data android:mimeType="vnd.android.cursor.item/phone_v2"/> |
| 227 | <data android:mimeType="vnd.android.cursor.item/person"/> |
Santos Cordon | 10e6832 | 2013-12-12 16:06:56 -0800 | [diff] [blame] | 228 | </intent-filter> |
| 229 | </activity-alias> |
| 230 | |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 231 | <receiver android:name=".components.TelecomBroadcastReceiver" |
| 232 | android:exported="false" |
| 233 | android:process="system"> |
Nancy Chen | 6f5c08d | 2014-09-23 16:54:05 -0700 | [diff] [blame] | 234 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 235 | <action android:name="com.android.server.telecom.ACTION_CLEAR_MISSED_CALLS"/> |
| 236 | <action android:name="com.android.server.telecom.ACTION_CALL_BACK_FROM_NOTIFICATION"/> |
| 237 | <action android:name="com.android.server.telecom.ACTION_SEND_SMS_FROM_NOTIFICATION"/> |
| 238 | <action android:name="com.android.server.telecom.ACTION_ANSWER_FROM_NOTIFICATION"/> |
| 239 | <action android:name="com.android.server.telecom.ACTION_REJECT_FROM_NOTIFICATION"/> |
| 240 | <action android:name="com.android.server.telecom.PROCEED_WITH_CALL"/> |
| 241 | <action android:name="com.android.server.telecom.CANCEL_CALL"/> |
| 242 | <action android:name="com.android.server.telecom.PROCEED_WITH_REDIRECTED_CALL"/> |
| 243 | <action android:name="com.android.server.telecom.CANCEL_REDIRECTED_CALL"/> |
Nancy Chen | 6f5c08d | 2014-09-23 16:54:05 -0700 | [diff] [blame] | 244 | </intent-filter> |
| 245 | </receiver> |
| 246 | |
tonyzhu | 8ba94c5 | 2018-10-23 15:37:04 +0800 | [diff] [blame] | 247 | <receiver android:name=".components.AppUninstallBroadcastReceiver" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 248 | android:process="system" |
| 249 | android:exported="true"> |
Nancy Chen | 6f5c08d | 2014-09-23 16:54:05 -0700 | [diff] [blame] | 250 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 251 | <action android:name="android.intent.action.PACKAGE_FULLY_REMOVED"/> |
| 252 | <data android:scheme="package"/> |
Nancy Chen | 6f5c08d | 2014-09-23 16:54:05 -0700 | [diff] [blame] | 253 | </intent-filter> |
| 254 | </receiver> |
Tyler Gunn | d900ce6 | 2014-08-13 11:40:59 -0700 | [diff] [blame] | 255 | |
Andrew Lee | af22dd1 | 2015-02-25 17:40:11 -0800 | [diff] [blame] | 256 | <activity android:name=".RespondViaSmsSettings" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 257 | android:label="@string/respond_via_sms_setting_title" |
| 258 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 259 | android:theme="@style/Theme.Telecom.DialerSettings" |
| 260 | android:process=":ui" |
| 261 | android:exported="true"> |
Ihab Awad | ff7493a | 2014-06-10 13:47:44 -0700 | [diff] [blame] | 262 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 263 | <action android:name="android.intent.action.MAIN"/> |
| 264 | <action android:name="android.telecom.action.SHOW_RESPOND_VIA_SMS_SETTINGS"/> |
| 265 | <category android:name="android.intent.category.DEFAULT"/> |
Ihab Awad | ff7493a | 2014-06-10 13:47:44 -0700 | [diff] [blame] | 266 | </intent-filter> |
| 267 | </activity> |
Ihab Awad | 104f806 | 2014-07-17 11:29:35 -0700 | [diff] [blame] | 268 | |
Santos Cordon | 5534434 | 2015-05-04 13:05:30 -0700 | [diff] [blame] | 269 | <activity android:name=".settings.EnableAccountPreferenceActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 270 | android:label="@string/enable_account_preference_title" |
| 271 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 272 | android:theme="@style/Theme.Telecom.DialerSettings" |
| 273 | android:process=":ui" |
| 274 | android:exported="true"> |
Santos Cordon | 5534434 | 2015-05-04 13:05:30 -0700 | [diff] [blame] | 275 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 276 | <action android:name="android.intent.action.MAIN"/> |
| 277 | <category android:name="android.intent.category.DEFAULT"/> |
Santos Cordon | 5534434 | 2015-05-04 13:05:30 -0700 | [diff] [blame] | 278 | </intent-filter> |
| 279 | </activity> |
| 280 | |
Ihab Awad | 78a5e6b | 2015-02-06 10:13:05 -0800 | [diff] [blame] | 281 | <activity android:name=".components.ErrorDialogActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 282 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 283 | android:excludeFromRecents="true" |
| 284 | android:launchMode="singleInstance" |
| 285 | android:theme="@style/Theme.Telecomm.Transparent" |
| 286 | android:process=":ui"> |
Yorke Lee | d725587 | 2014-08-25 15:03:51 -0700 | [diff] [blame] | 287 | </activity> |
| 288 | |
Tyler Gunn | bbd78a7 | 2017-04-30 14:16:07 -0700 | [diff] [blame] | 289 | <activity android:name=".ui.ConfirmCallDialogActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 290 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 291 | android:excludeFromRecents="true" |
| 292 | android:launchMode="singleInstance" |
| 293 | android:theme="@style/Theme.Telecomm.Transparent" |
| 294 | android:process=":ui"> |
Tyler Gunn | bbd78a7 | 2017-04-30 14:16:07 -0700 | [diff] [blame] | 295 | </activity> |
| 296 | |
sqian | e976e68 | 2018-10-05 18:51:40 -0700 | [diff] [blame] | 297 | <activity android:name=".ui.CallRedirectionTimeoutDialogActivity" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 298 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 299 | android:excludeFromRecents="true" |
| 300 | android:launchMode="singleInstance" |
| 301 | android:theme="@style/Theme.Telecomm.Transparent" |
| 302 | android:process=":ui"> |
sqian | e976e68 | 2018-10-05 18:51:40 -0700 | [diff] [blame] | 303 | </activity> |
| 304 | |
Tyler Gunn | 47eb3fe | 2018-03-12 14:38:47 -0700 | [diff] [blame] | 305 | <activity android:name=".ui.TelecomDeveloperMenu" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 306 | android:label="@string/developer_title" |
| 307 | android:exported="false" |
| 308 | android:process=":ui"/> |
Yorke Lee | b5c5d44 | 2015-04-27 15:21:53 -0700 | [diff] [blame] | 309 | |
Ihab Awad | 78a5e6b | 2015-02-06 10:13:05 -0800 | [diff] [blame] | 310 | <service android:name=".components.BluetoothPhoneService" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 311 | android:singleUser="true" |
| 312 | android:process="system" |
| 313 | android:exported="true"> |
Santos Cordon | fddf12e | 2014-09-25 15:08:57 -0700 | [diff] [blame] | 314 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 315 | <action android:name="android.bluetooth.IBluetoothHeadsetPhone"/> |
Santos Cordon | fddf12e | 2014-09-25 15:08:57 -0700 | [diff] [blame] | 316 | </intent-filter> |
| 317 | </service> |
| 318 | |
Ihab Awad | 78a5e6b | 2015-02-06 10:13:05 -0800 | [diff] [blame] | 319 | <service android:name=".components.TelecomService" |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 320 | android:singleUser="true" |
| 321 | android:process="system" |
| 322 | android:exported="true"> |
Santos Cordon | f987d1a | 2014-12-02 03:37:03 -0800 | [diff] [blame] | 323 | <intent-filter> |
Ashwini Oruganti | c51ebdf | 2020-03-23 16:54:51 -0700 | [diff] [blame] | 324 | <action android:name="android.telecom.ITelecomService"/> |
Santos Cordon | f987d1a | 2014-12-02 03:37:03 -0800 | [diff] [blame] | 325 | </intent-filter> |
| 326 | </service> |
| 327 | |
Ben Gilad | 4937ff9 | 2013-12-12 12:05:37 -0800 | [diff] [blame] | 328 | </application> |
| 329 | </manifest> |