Santos Cordon | 7d4ddf6 | 2013-07-10 11:58:08 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2007 The Android Open Source Project |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 3 | |
Santos Cordon | 7d4ddf6 | 2013-07-10 11:58:08 -0700 | [diff] [blame] | 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 |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 7 | |
Santos Cordon | 7d4ddf6 | 2013-07-10 11:58:08 -0700 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 9 | |
Santos Cordon | 7d4ddf6 | 2013-07-10 11:58:08 -0700 | [diff] [blame] | 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 | --> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 16 | |
Santos Cordon | 7d4ddf6 | 2013-07-10 11:58:08 -0700 | [diff] [blame] | 17 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 18 | xmlns:androidprv="http://schemas.android.com/apk/prv/res/android" |
| 19 | package="com.android.phone" |
| 20 | coreApp="true" |
| 21 | android:sharedUserId="android.uid.phone" |
Sarah Chin | a85c7a3 | 2022-10-11 12:39:29 -0700 | [diff] [blame] | 22 | android:sharedUserLabel="@string/phoneAppLabel"> |
| 23 | |
Sarah Chin | 46355ba | 2022-11-01 23:51:16 -0700 | [diff] [blame] | 24 | <!-- Allows broadcasting for SlicePurchaseController events. --> |
| 25 | <protected-broadcast android:name="com.android.phone.slice.action.START_SLICE_PURCHASE_APP" /> |
| 26 | <protected-broadcast android:name="com.android.phone.slice.action.SLICE_PURCHASE_APP_RESPONSE_TIMEOUT" /> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 27 | |
| 28 | <original-package android:name="com.android.phone" /> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 29 | <!-- Allows granting runtime permissions to telephony related components. --> |
| 30 | <uses-permission android:name="android.permission.GRANT_RUNTIME_PERMISSIONS_TO_TELEPHONY_DEFAULTS" /> |
| 31 | |
| 32 | <uses-permission android:name="android.permission.BROADCAST_STICKY" /> |
| 33 | <uses-permission android:name="android.permission.CALL_PHONE" /> |
| 34 | <uses-permission android:name="android.permission.CALL_PRIVILEGED" /> |
| 35 | <!-- TELEPHONY_SECRET_CODE used to be sent by the Dialer app, but is now sent by |
| 36 | the phone process through an API added in O. Since the broadcast was unprotected prior to |
| 37 | O, apps may have required this permission (which only Dialer has) in their receivers. |
| 38 | So, declare this permission here for backwards compatibility so the phone process can send |
| 39 | the broadcasts to those same receivers. --> |
| 40 | <uses-permission android:name="android.permission.CONTROL_INCALL_EXPERIENCE" /> |
| 41 | <uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" /> |
| 42 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
| 43 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
| 44 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 45 | <uses-permission android:name="android.permission.READ_CALL_LOG" /> |
| 46 | <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
| 47 | <uses-permission android:name="android.permission.WRITE_CALL_LOG" /> |
| 48 | <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> |
| 49 | <uses-permission android:name="android.permission.INTERNAL_SYSTEM_WINDOW" /> |
| 50 | <uses-permission android:name="android.permission.VIBRATE" /> |
Jeff Sharkey | 36edbf4 | 2021-03-24 14:22:48 -0600 | [diff] [blame] | 51 | <uses-permission android:name="android.permission.BLUETOOTH_CONNECT" /> |
| 52 | <uses-permission android:name="android.permission.BLUETOOTH_SCAN" /> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 53 | <uses-permission android:name="android.permission.REORDER_TASKS" /> |
| 54 | <uses-permission android:name="android.permission.CHANGE_CONFIGURATION" /> |
| 55 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 56 | <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> |
| 57 | <uses-permission android:name="android.permission.STATUS_BAR" /> |
| 58 | <uses-permission android:name="android.permission.STATUS_BAR_SERVICE" /> |
| 59 | <uses-permission android:name="android.permission.RECEIVE_SMS" /> |
| 60 | <uses-permission android:name="android.permission.READ_SMS" /> |
| 61 | <uses-permission android:name="android.permission.WRITE_SMS" /> |
| 62 | <uses-permission android:name="android.permission.SEND_SMS" /> |
| 63 | <uses-permission android:name="android.permission.SEND_RESPOND_VIA_MESSAGE" /> |
Neil Fuller | 7cc91bd | 2020-02-06 08:39:21 +0000 | [diff] [blame] | 64 | <uses-permission android:name="android.permission.SUGGEST_TELEPHONY_TIME_AND_ZONE" /> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 65 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
| 66 | <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" /> |
| 67 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
| 68 | <uses-permission android:name="android.permission.ACCESS_IMS_CALL_SERVICE" /> |
| 69 | <uses-permission android:name="android.permission.DEVICE_POWER" /> |
| 70 | <uses-permission android:name="android.permission.DISABLE_KEYGUARD" /> |
| 71 | <uses-permission android:name="android.permission.INTERNET" /> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 72 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> |
| 73 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
Thomas Nguyen | 4f9c89e | 2023-12-18 10:51:57 -0800 | [diff] [blame] | 74 | <uses-permission android:name="android.permission.LOCATION_BYPASS" /> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 75 | <uses-permission android:name="android.permission.WRITE_APN_SETTINGS" /> |
| 76 | <uses-permission android:name="android.permission.BROADCAST_SMS"/> |
| 77 | <uses-permission android:name="android.permission.BROADCAST_WAP_PUSH"/> |
| 78 | <uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/> |
| 79 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
| 80 | <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/> |
| 81 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
| 82 | <uses-permission android:name="android.permission.SHUTDOWN" /> |
| 83 | <uses-permission android:name="android.permission.RECORD_AUDIO" /> |
| 84 | <uses-permission android:name="android.permission.PERFORM_CDMA_PROVISIONING" /> |
| 85 | <uses-permission android:name="android.permission.USE_SIP" /> |
| 86 | <uses-permission android:name="android.permission.REBOOT" /> |
| 87 | <uses-permission android:name="android.permission.UPDATE_LOCK" /> |
| 88 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> |
| 89 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS_FULL" /> |
| 90 | <uses-permission android:name="com.android.smspush.WAPPUSH_MANAGER_BIND" /> |
| 91 | <uses-permission android:name="android.permission.MANAGE_USERS" /> |
| 92 | <uses-permission android:name="android.permission.UPDATE_APP_OPS_STATS" /> |
| 93 | <uses-permission android:name="android.permission.READ_CARRIER_APP_INFO" /> |
| 94 | <uses-permission android:name="android.permission.MANAGE_APP_OPS_MODES" /> |
| 95 | <uses-permission android:name="android.permission.CONNECTIVITY_USE_RESTRICTED_NETWORKS" /> |
| 96 | <uses-permission android:name="android.permission.NETWORK_FACTORY" /> |
| 97 | <uses-permission android:name="android.permission.OBSERVE_NETWORK_POLICY" /> |
| 98 | <uses-permission android:name="android.permission.SET_PREFERRED_APPLICATIONS" /> |
| 99 | <uses-permission android:name="android.permission.READ_SEARCH_INDEXABLES" /> |
| 100 | <uses-permission android:name="android.permission.DUMP" /> |
| 101 | <uses-permission android:name="android.permission.REGISTER_CALL_PROVIDER" /> |
| 102 | <uses-permission android:name="android.permission.REGISTER_SIM_SUBSCRIPTION" /> |
| 103 | <uses-permission android:name="android.permission.BIND_IMS_SERVICE" /> |
| 104 | <uses-permission android:name="android.permission.BIND_CARRIER_SERVICES" /> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 105 | <uses-permission android:name="android.permission.BIND_EUICC_SERVICE" /> |
| 106 | <uses-permission android:name="android.permission.BIND_TELEPHONY_NETWORK_SERVICE" /> |
| 107 | <uses-permission android:name="android.permission.BIND_CELL_BROADCAST_SERVICE" /> |
| 108 | <uses-permission android:name="android.permission.WRITE_EMBEDDED_SUBSCRIPTIONS" /> |
| 109 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
| 110 | <uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" /> |
| 111 | <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" /> |
| 112 | <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" /> |
| 113 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
| 114 | <uses-permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL" /> |
| 115 | <uses-permission android:name="com.android.voicemail.permission.WRITE_VOICEMAIL" /> |
| 116 | <uses-permission android:name="com.android.voicemail.permission.READ_VOICEMAIL" /> |
| 117 | <uses-permission android:name="android.permission.BIND_VISUAL_VOICEMAIL_SERVICE"/> |
| 118 | <uses-permission android:name="android.permission.LOCAL_MAC_ADDRESS" /> |
| 119 | <uses-permission android:name="android.permission.CHANGE_COMPONENT_ENABLED_STATE" /> |
| 120 | <uses-permission android:name="android.permission.CHANGE_DEVICE_IDLE_TEMP_WHITELIST" /> |
Steve Elliott | 8d56de2 | 2021-12-03 16:39:06 -0500 | [diff] [blame] | 121 | <uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 122 | <!-- Needed to block messages. --> |
| 123 | <uses-permission android:name="android.permission.READ_BLOCKED_NUMBERS" /> |
| 124 | <!-- Needed for emergency contact notification. --> |
| 125 | <uses-permission android:name="android.permission.WRITE_BLOCKED_NUMBERS" /> |
| 126 | <uses-permission android:name="android.permission.NETWORK_SETTINGS" /> |
| 127 | |
Chi Zhang | 4e89e5d | 2020-02-28 18:04:22 -0800 | [diff] [blame] | 128 | <!-- Needed to register puller to statsd. --> |
| 129 | <uses-permission android:name="android.permission.REGISTER_STATS_PULL_ATOM" /> |
| 130 | |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 131 | <!-- This tells the activity manager to not delay any of our activity |
| 132 | start requests, even if they happen immediately after the user |
| 133 | presses home. --> |
| 134 | <uses-permission android:name="android.permission.STOP_APP_SWITCHES" /> |
| 135 | <uses-permission android:name="android.permission.UPDATE_DEVICE_STATS" /> |
| 136 | <uses-permission android:name="android.permission.MANAGE_NETWORK_POLICY" /> |
| 137 | <uses-permission android:name="android.permission.READ_NETWORK_USAGE_HISTORY" /> |
| 138 | <uses-permission android:name="android.permission.BIND_TELEPHONY_DATA_SERVICE" /> |
Thomas Nguyen | 8f0ba83 | 2023-04-04 12:17:11 -0700 | [diff] [blame] | 139 | <uses-permission android:name="android.permission.BIND_SATELLITE_GATEWAY_SERVICE" /> |
Saloni | 96ef0c1 | 2023-02-22 01:46:30 +0000 | [diff] [blame] | 140 | <uses-permission android:name="android.permission.BIND_SATELLITE_SERVICE" /> |
Thomas Nguyen | 4f9c89e | 2023-12-18 10:51:57 -0800 | [diff] [blame] | 141 | <uses-permission android:name="android.permission.SATELLITE_COMMUNICATION" /> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 142 | <uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" /> |
| 143 | <uses-permission android:name="android.permission.READ_PRECISE_PHONE_STATE" /> |
| 144 | <uses-permission android:name="android.permission.MANAGE_ROLE_HOLDERS" /> |
Tyler Gunn | c7c99d1 | 2020-07-29 11:24:38 -0700 | [diff] [blame] | 145 | <!-- Allows us to allow list receivers of the |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 146 | ACTION_SIM_SLOT_STATUS_CHANGED broadcast to start activities |
| 147 | from the background. --> |
| 148 | <uses-permission android:name="android.permission.START_ACTIVITIES_FROM_BACKGROUND" /> |
junyulai | 55d195e | 2020-02-24 18:26:35 +0800 | [diff] [blame] | 149 | <uses-permission android:name="android.permission.NETWORK_STATS_PROVIDER" /> |
Sarah Chin | 5595ee9 | 2020-09-23 17:52:55 -0700 | [diff] [blame] | 150 | <uses-permission android:name="android.permission.MANAGE_SUBSCRIPTION_PLANS"/> |
Brad Ebinger | 999d330 | 2020-11-25 14:31:39 -0800 | [diff] [blame] | 151 | <uses-permission android:name="android.permission.OBSERVE_ROLE_HOLDERS"/> |
Hui Wang | 641e81c | 2020-10-12 12:14:23 -0700 | [diff] [blame] | 152 | <uses-permission android:name="android.permission.BIND_GBA_SERVICE"/> |
Rambo Wang | 1bf0afc | 2021-06-25 11:53:44 -0700 | [diff] [blame] | 153 | <!-- Permissions required for reading and logging compat changes --> |
| 154 | <uses-permission android:name="android.permission.LOG_COMPAT_CHANGE"/> |
| 155 | <uses-permission android:name="android.permission.READ_COMPAT_CHANGE_CONFIG"/> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 156 | |
Kurt Dresner | 88b2217 | 2020-10-07 15:56:56 -0700 | [diff] [blame] | 157 | <!-- Needed to listen to changes in projection state. --> |
| 158 | <uses-permission android:name="android.permission.READ_PROJECTION_STATE"/> |
Meng Wang | 9ec1823 | 2021-11-18 17:32:15 -0800 | [diff] [blame] | 159 | <!-- Needed to access TelephonyProvider SIMINFO table. --> |
| 160 | <uses-permission android:name="android.permission.ACCESS_TELEPHONY_SIMINFO_DB"/> |
Julia Reynolds | fd2a218 | 2021-12-06 18:15:51 +0000 | [diff] [blame] | 161 | <uses-permission android:name="android.permission.POST_NOTIFICATIONS" /> |
Kurt Dresner | 88b2217 | 2020-10-07 15:56:56 -0700 | [diff] [blame] | 162 | |
Thomas Stuart | 79f9cf9 | 2022-09-28 09:40:14 -0700 | [diff] [blame] | 163 | <!-- Needed to block unwanted malicious pop up overlays --> |
| 164 | <uses-permission android:name="android.permission.HIDE_NON_SYSTEM_OVERLAY_WINDOWS"/> |
| 165 | |
Pranav Madapurmath | 78eb6cc | 2022-11-16 17:08:58 +0000 | [diff] [blame] | 166 | <!-- Needed to set user association to a certain sim --> |
| 167 | <uses-permission android:name="android.permission.MANAGE_SUBSCRIPTION_USER_ASSOCIATION"/> |
| 168 | |
Aishwarya Mallampati | a3dfb1f | 2023-05-01 20:43:17 +0000 | [diff] [blame] | 169 | <!-- Needed to register for UWB state changes for satellite communication --> |
| 170 | <uses-permission android:name="android.permission.UWB_PRIVILEGED"/> |
| 171 | |
Hwangoo Park | bf3968c | 2024-01-19 07:49:22 +0000 | [diff] [blame] | 172 | <!-- Needed to bind the domain selection service. --> |
| 173 | <uses-permission android:name="android.permission.BIND_DOMAIN_SELECTION_SERVICE" /> |
| 174 | |
Gil Cukierman | 23ade47 | 2023-12-14 10:53:02 -0500 | [diff] [blame] | 175 | <!-- Needed to send safety center updates for cellular transparency features --> |
| 176 | <uses-permission android:name="android.permission.SEND_SAFETY_CENTER_UPDATE"/> |
| 177 | |
Juan Taveras | 65f5231 | 2024-02-13 22:01:49 +0000 | [diff] [blame^] | 178 | <!-- Needed because the DISPLAY_EMERGENCY_MESSAGE ConnectionEvent contains a PendingIntent to activate the satellite feature. --> |
| 179 | <uses-permission android:name="com.google.android.apps.stargate.permission.SEND_EMERGENCY_INTENTS"/> |
| 180 | |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 181 | <application android:name="PhoneApp" |
| 182 | android:persistent="true" |
| 183 | android:label="@string/phoneAppLabel" |
| 184 | android:icon="@mipmap/ic_launcher_phone" |
| 185 | android:allowBackup="false" |
| 186 | android:supportsRtl="true" |
| 187 | android:usesCleartextTraffic="true" |
| 188 | android:defaultToDeviceProtectedStorage="true" |
| 189 | android:directBootAware="true"> |
| 190 | |
| 191 | <provider android:name="IccProvider" |
| 192 | android:authorities="icc" |
| 193 | android:multiprocess="true" |
| 194 | android:exported="true" |
| 195 | android:readPermission="android.permission.READ_CONTACTS" |
| 196 | android:writePermission="android.permission.WRITE_CONTACTS" /> |
| 197 | |
Marcus Hagerott | b376927 | 2020-10-30 14:27:33 -0700 | [diff] [blame] | 198 | <provider android:name=".SimPhonebookProvider" |
| 199 | android:authorities="com.android.simphonebook" |
| 200 | android:multiprocess="true" |
| 201 | android:exported="true" |
| 202 | android:readPermission="android.permission.READ_CONTACTS" |
| 203 | android:writePermission="android.permission.WRITE_CONTACTS" /> |
| 204 | |
calvinpan | 779ca48 | 2020-11-03 02:17:22 +0800 | [diff] [blame] | 205 | <provider android:name="com.android.ims.rcs.uce.eab.EabProvider" |
| 206 | android:authorities="eab" |
| 207 | android:exported="false"/> |
| 208 | |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 209 | <!-- Dialer UI that only allows emergency calls --> |
| 210 | <activity android:name="EmergencyDialer" |
| 211 | android:label="@string/emergencyDialerIconLabel" |
| 212 | android:theme="@style/EmergencyDialerTheme" |
| 213 | android:screenOrientation="portrait" |
Shawn Lee | 8854ed3 | 2022-12-03 02:24:51 -0800 | [diff] [blame] | 214 | android:showWhenLocked="true" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 215 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 216 | android:resizeableActivity="false"> |
| 217 | <intent-filter> |
| 218 | <action android:name="com.android.phone.EmergencyDialer.DIAL" /> |
| 219 | <category android:name="android.intent.category.DEFAULT" /> |
| 220 | </intent-filter> |
| 221 | <intent-filter> |
| 222 | <action android:name="com.android.phone.EmergencyDialer.DIAL" /> |
| 223 | <category android:name="android.intent.category.DEFAULT" /> |
| 224 | <data android:scheme="tel" /> |
| 225 | </intent-filter> |
| 226 | <intent-filter> |
| 227 | <action android:name="android.intent.action.DIAL_EMERGENCY" /> |
| 228 | <category android:name="android.intent.category.DEFAULT" /> |
| 229 | </intent-filter> |
| 230 | <intent-filter> |
| 231 | <action android:name="android.intent.action.DIAL_EMERGENCY" /> |
| 232 | <category android:name="android.intent.category.DEFAULT" /> |
| 233 | <data android:scheme="tel" /> |
| 234 | </intent-filter> |
| 235 | </activity> |
| 236 | |
| 237 | <activity android:name="ADNList" /> |
| 238 | |
| 239 | <activity android:name="SimContacts" |
| 240 | android:label="@string/simContacts_title" |
| 241 | android:theme="@style/SimImportTheme" |
| 242 | android:screenOrientation="portrait" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 243 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 244 | android:icon="@mipmap/ic_launcher_contacts"> |
| 245 | |
| 246 | <intent-filter> |
| 247 | <action android:name="android.intent.action.VIEW" /> |
| 248 | <category android:name="android.intent.category.DEFAULT" /> |
| 249 | <data android:mimeType="vnd.android.cursor.item/sim-contact" /> |
| 250 | </intent-filter> |
| 251 | </activity> |
| 252 | |
| 253 | <activity android:name="com.android.phone.settings.fdn.FdnList" |
| 254 | android:label="@string/fdnListLabel" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 255 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 256 | android:theme="@style/DialerSettingsLight"> |
| 257 | <intent-filter> |
| 258 | <action android:name="android.intent.action.VIEW" /> |
| 259 | <category android:name="android.intent.category.DEFAULT" /> |
| 260 | <data android:mimeType="vnd.android.cursor.item/sim-contact" /> |
| 261 | </intent-filter> |
| 262 | </activity> |
| 263 | |
| 264 | <activity android:name="com.android.internal.telephony.uicc.InstallCarrierAppTrampolineActivity" |
| 265 | android:theme="@android:style/Theme.Translucent.NoTitleBar" |
| 266 | android:exported="false"/> |
| 267 | |
| 268 | <activity android:name="GsmUmtsCallOptions" |
| 269 | android:label="@string/gsm_umts_options" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 270 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 271 | android:theme="@style/DialerSettingsLight"> |
| 272 | <intent-filter> |
| 273 | <action android:name="android.intent.action.MAIN" /> |
| 274 | </intent-filter> |
| 275 | </activity> |
| 276 | |
| 277 | <activity android:name="CdmaCallOptions" |
| 278 | android:label="@string/cdma_options" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 279 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 280 | android:theme="@style/DialerSettingsLight"> |
| 281 | <intent-filter> |
| 282 | <action android:name="android.intent.action.MAIN" /> |
| 283 | </intent-filter> |
| 284 | </activity> |
| 285 | |
| 286 | <activity android:name="GsmUmtsCallForwardOptions" |
| 287 | android:label="@string/labelCF" |
| 288 | android:configChanges="orientation|screenSize|keyboardHidden" |
Grant Menke | 8661837 | 2023-08-10 17:04:22 -0700 | [diff] [blame] | 289 | android:exported="false" |
Thomas Stuart | a4ab89e | 2022-04-04 12:39:17 -0700 | [diff] [blame] | 290 | android:theme="@style/CallSettingsWithoutDividerTheme"> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 291 | <intent-filter> |
| 292 | <action android:name="android.intent.action.MAIN" /> |
| 293 | </intent-filter> |
| 294 | </activity> |
| 295 | |
Jang Hayeong | 43bd140 | 2019-07-16 15:40:47 +0900 | [diff] [blame] | 296 | <activity android:name="CdmaCallForwardOptions" |
| 297 | android:label="@string/labelCF" |
| 298 | android:configChanges="orientation|screenSize|keyboardHidden" |
Grant Menke | 8661837 | 2023-08-10 17:04:22 -0700 | [diff] [blame] | 299 | android:exported="false" |
Thomas Stuart | a4ab89e | 2022-04-04 12:39:17 -0700 | [diff] [blame] | 300 | android:theme="@style/CallSettingsWithoutDividerTheme"> |
Jang Hayeong | 43bd140 | 2019-07-16 15:40:47 +0900 | [diff] [blame] | 301 | <intent-filter> |
| 302 | <action android:name="android.intent.action.MAIN" /> |
| 303 | </intent-filter> |
| 304 | </activity> |
| 305 | |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 306 | <activity android:name="GsmUmtsCallBarringOptions" |
| 307 | android:label="@string/labelCallBarring" |
| 308 | android:configChanges="orientation|screenSize|keyboardHidden" |
Grant Menke | 8661837 | 2023-08-10 17:04:22 -0700 | [diff] [blame] | 309 | android:exported="false" |
danielwbhuang | 2804b11 | 2020-02-25 16:55:16 +0800 | [diff] [blame] | 310 | android:theme="@style/DialerSettingsLight"> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 311 | <intent-filter> |
| 312 | <action android:name="android.intent.action.MAIN" /> |
| 313 | </intent-filter> |
| 314 | </activity> |
| 315 | |
| 316 | <activity android:name="GsmUmtsAdditionalCallOptions" |
| 317 | android:label="@string/labelGSMMore" |
| 318 | android:configChanges="orientation|screenSize|keyboardHidden" |
Grant Menke | 8661837 | 2023-08-10 17:04:22 -0700 | [diff] [blame] | 319 | android:exported="false" |
Thomas Stuart | a4ab89e | 2022-04-04 12:39:17 -0700 | [diff] [blame] | 320 | android:theme="@style/CallSettingsWithoutDividerTheme"> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 321 | <intent-filter> |
| 322 | <action android:name="android.intent.action.MAIN" /> |
| 323 | </intent-filter> |
| 324 | </activity> |
| 325 | |
| 326 | <!-- fdn setting --> |
| 327 | <activity android:name="com.android.phone.settings.fdn.FdnSetting" |
| 328 | android:label="@string/fdn" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 329 | android:exported="true" |
Thomas Stuart | a4ab89e | 2022-04-04 12:39:17 -0700 | [diff] [blame] | 330 | android:theme="@style/CallSettingsWithoutDividerTheme"> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 331 | <intent-filter> |
| 332 | <action android:name="android.intent.action.MAIN" /> |
| 333 | </intent-filter> |
| 334 | </activity> |
| 335 | |
| 336 | <!-- SIM PIN setting --> |
| 337 | <activity android:name="EnableIccPinScreen" |
| 338 | android:label="@string/enable_pin" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 339 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 340 | android:theme="@style/DialerSettingsLight"> |
| 341 | <intent-filter> |
| 342 | <action android:name="android.intent.action.MAIN" /> |
| 343 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
| 344 | </intent-filter> |
| 345 | </activity> |
| 346 | |
| 347 | <activity android:name="ChangeIccPinScreen" |
| 348 | android:label="@string/change_pin" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 349 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 350 | android:theme="@style/DialerSettingsLight"> |
| 351 | <intent-filter> |
| 352 | <action android:name="android.intent.action.MAIN" /> |
| 353 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
| 354 | </intent-filter> |
| 355 | </activity> |
| 356 | |
| 357 | <activity android:name="com.android.phone.settings.fdn.GetPin2Screen" |
| 358 | android:label="@string/get_pin2" |
| 359 | android:theme="@style/DialerSettingsLight" |
| 360 | android:windowSoftInputMode="stateVisible"> |
| 361 | </activity> |
| 362 | |
| 363 | <activity android:name="com.android.phone.settings.fdn.EditFdnContactScreen" |
| 364 | android:theme="@style/DialerSettingsLight" |
| 365 | android:windowSoftInputMode="stateVisible"> |
| 366 | </activity> |
| 367 | |
| 368 | <activity android:name="com.android.phone.settings.fdn.DeleteFdnContactScreen" |
| 369 | android:theme="@style/DialerSettingsLight" |
| 370 | android:label="@string/delete_fdn_contact"> |
| 371 | </activity> |
| 372 | |
| 373 | <!-- "Call settings" UI, used only on voice-capable phone devices. --> |
| 374 | <activity android:name="CallFeaturesSetting" |
| 375 | android:label="@string/call_settings" |
| 376 | android:configChanges="orientation|screenSize|keyboardHidden" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 377 | android:exported="true" |
Thomas Stuart | a4ab89e | 2022-04-04 12:39:17 -0700 | [diff] [blame] | 378 | android:theme="@style/CallSettingsWithoutDividerTheme"> |
Tyler Gunn | 6a0c7d2 | 2021-05-26 14:50:01 -0700 | [diff] [blame] | 379 | <intent-filter android:priority="1"> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 380 | <action android:name="android.intent.action.MAIN" /> |
| 381 | <action android:name="android.telecom.action.SHOW_CALL_SETTINGS" /> |
| 382 | <category android:name="android.intent.category.DEFAULT" /> |
| 383 | </intent-filter> |
| 384 | </activity> |
| 385 | |
| 386 | <!-- Activation service that trigger OTASP sim provisioning --> |
| 387 | <service android:name=".otasp.OtaspActivationService" android:launchMode="singleInstance" |
| 388 | androidprv:systemUserOnly="true" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 389 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 390 | android:permission="android.permission.MODIFY_PHONE_STATE"> |
| 391 | <intent-filter> |
| 392 | <action android:name="android.service.simActivation.SimActivationService" /> |
| 393 | </intent-filter> |
| 394 | </service> |
| 395 | |
| 396 | <receiver android:name=".otasp.OtaspSimStateReceiver" androidprv:systemUserOnly="true" |
| 397 | android:exported ="false"> |
| 398 | <intent-filter> |
| 399 | <action android:name="android.telephony.action.CARRIER_CONFIG_CHANGED" /> |
| 400 | </intent-filter> |
| 401 | </receiver> |
| 402 | |
| 403 | <!-- "Accessibility" settings UI. Referenced by Dialer application. --> |
| 404 | <activity android:name="com.android.phone.settings.AccessibilitySettingsActivity" |
| 405 | android:label="@string/accessibility_settings_activity_title" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 406 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 407 | android:theme="@style/DialerSettingsLight"> |
| 408 | <intent-filter> |
| 409 | <action android:name="android.intent.action.MAIN" /> |
| 410 | <action android:name="android.telecom.action.SHOW_CALL_ACCESSIBILITY_SETTINGS" /> |
| 411 | <category android:name="android.intent.category.DEFAULT" /> |
| 412 | </intent-filter> |
| 413 | </activity> |
| 414 | |
| 415 | <!-- CDMA Emergency Callback Mode --> |
| 416 | <service android:name="EmergencyCallbackModeService"> |
| 417 | </service> |
| 418 | |
| 419 | <!-- service to dump telephony information --> |
| 420 | <service android:name="com.android.phone.TelephonyDebugService" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 421 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 422 | android:permission="android.permission.DUMP"> |
| 423 | <intent-filter> |
| 424 | <action android:name="com.android.phone.TelephonyDebugService" /> |
| 425 | </intent-filter> |
| 426 | </service> |
| 427 | |
| 428 | <!-- Handler for EuiccManager's public-facing intents. --> |
| 429 | <activity android:name=".euicc.EuiccUiDispatcherActivity" |
| 430 | android:theme="@android:style/Theme.NoDisplay" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 431 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 432 | android:permission="android.permission.MODIFY_PHONE_STATE"> |
| 433 | <!-- Max out priority to ensure nobody else will handle these intents. --> |
| 434 | <intent-filter android:priority="1000"> |
| 435 | <action android:name= |
| 436 | "android.telephony.euicc.action.MANAGE_EMBEDDED_SUBSCRIPTIONS" /> |
| 437 | <action android:name= |
| 438 | "android.telephony.euicc.action.PROVISION_EMBEDDED_SUBSCRIPTION" /> |
Shivakumar Neginal | 9cd6189 | 2022-12-19 04:38:52 +0000 | [diff] [blame] | 439 | <action android:name= |
| 440 | "android.telephony.euicc.action.TRANSFER_EMBEDDED_SUBSCRIPTIONS" /> |
| 441 | <action android:name= |
| 442 | "android.telephony.euicc.action.CONVERT_TO_EMBEDDED_SUBSCRIPTION" /> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 443 | <category android:name="android.intent.category.DEFAULT" /> |
| 444 | </intent-filter> |
| 445 | </activity> |
| 446 | |
| 447 | <!-- |
| 448 | Handler for EuiccManager's resolution intents. These are locked down so that only |
| 449 | privileged processes can start them, which means we can trust the Intent used to start |
| 450 | it (which contains a description of the next step to perform after resolution). |
Peter Wang | 3183d45 | 2020-05-11 14:31:11 -0700 | [diff] [blame] | 451 | |
| 452 | If modified, also change EuiccController#RESOLUTION_ACTIVITY_PACKAGE_NAME and |
| 453 | EuiccController#RESOLUTION_ACTIVITY_CLASS_NAME |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 454 | --> |
| 455 | <activity android:name=".euicc.EuiccResolutionUiDispatcherActivity" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 456 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 457 | android:permission="android.permission.CALL_PRIVILEGED"> |
| 458 | <!-- Max out priority to ensure nobody else will handle these intents. --> |
| 459 | <intent-filter android:priority="1000"> |
| 460 | <action android:name= |
| 461 | "android.telephony.euicc.action.RESOLVE_ERROR" /> |
| 462 | <category android:name="android.intent.category.DEFAULT" /> |
| 463 | </intent-filter> |
| 464 | </activity> |
| 465 | |
| 466 | <!-- |
| 467 | Handler for EuiccManager's privileged action intents. These are locked down so that only |
| 468 | privileged processes can start them. |
| 469 | --> |
| 470 | <activity android:name=".euicc.EuiccPrivilegedActionUiDispatcherActivity" |
| 471 | android:theme="@android:style/Theme.NoDisplay" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 472 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 473 | android:permission="android.permission.CALL_PRIVILEGED"> |
| 474 | <!-- Max out priority to ensure nobody else will handle these intents. --> |
| 475 | <intent-filter android:priority="1000"> |
| 476 | <action android:name= |
| 477 | "android.telephony.euicc.action.TOGGLE_SUBSCRIPTION_PRIVILEGED" /> |
| 478 | <action android:name= |
| 479 | "android.telephony.euicc.action.DELETE_SUBSCRIPTION_PRIVILEGED" /> |
| 480 | <action android:name= |
| 481 | "android.telephony.euicc.action.RENAME_SUBSCRIPTION_PRIVILEGED" /> |
| 482 | <category android:name="android.intent.category.DEFAULT" /> |
| 483 | </intent-filter> |
| 484 | </activity> |
| 485 | |
| 486 | <!-- |
| 487 | Handler for EuiccManager's public action intents. These are public and do not require |
| 488 | any special permissions to start, although the calling package name should be |
| 489 | whitelisted by the underlying eUICC service implementation (i.e. the LPA). |
| 490 | --> |
| 491 | <activity android:name=".euicc.EuiccPublicActionUiDispatcherActivity" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 492 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 493 | android:theme="@android:style/Theme.NoDisplay"> |
| 494 | <!-- Max out priority to ensure nobody else will handle these intents. --> |
| 495 | <intent-filter android:priority="1000"> |
| 496 | <action android:name= |
| 497 | "android.telephony.euicc.action.START_EUICC_ACTIVATION" /> |
| 498 | <category android:name="android.intent.category.DEFAULT" /> |
| 499 | </intent-filter> |
| 500 | </activity> |
| 501 | |
| 502 | <activity android:name="EmergencyCallbackModeExitDialog" |
| 503 | android:excludeFromRecents="true" |
| 504 | android:label="@string/ecm_exit_dialog" |
| 505 | android:launchMode="singleTop" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 506 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 507 | android:theme="@android:style/Theme.Translucent.NoTitleBar"> |
| 508 | <intent-filter> |
| 509 | <action android:name="com.android.phone.action.ACTION_SHOW_ECM_EXIT_DIALOG" /> |
Jayachandran C | c5dabca | 2020-02-12 15:56:11 -0800 | [diff] [blame] | 510 | <action android:name="android.telephony.action.SHOW_NOTICE_ECM_BLOCK_OTHERS" /> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 511 | <category android:name="android.intent.category.DEFAULT" /> |
| 512 | </intent-filter> |
| 513 | </activity> |
| 514 | |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 515 | <activity android:name="MMIDialogActivity" |
| 516 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 517 | android:excludeFromRecents="true" |
| 518 | android:launchMode="singleInstance" |
| 519 | android:theme="@style/Empty"> |
| 520 | </activity> |
| 521 | |
| 522 | <activity android:name="com.android.phone.settings.PhoneAccountSettingsActivity" |
| 523 | android:label="@string/phone_accounts" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 524 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 525 | android:theme="@style/DialerSettingsLight"> |
| 526 | <intent-filter> |
| 527 | <action android:name="android.telecom.action.CHANGE_PHONE_ACCOUNTS" /> |
| 528 | <category android:name="android.intent.category.DEFAULT" /> |
| 529 | </intent-filter> |
| 530 | </activity> |
| 531 | |
| 532 | <activity android:name="com.android.phone.settings.VoicemailSettingsActivity" |
| 533 | android:label="@string/voicemail" |
| 534 | android:configChanges="orientation|screenSize|keyboardHidden|screenLayout" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 535 | android:exported="true" |
Thomas Stuart | a4ab89e | 2022-04-04 12:39:17 -0700 | [diff] [blame] | 536 | android:theme="@style/CallSettingsWithoutDividerTheme"> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 537 | <intent-filter > |
| 538 | <!-- DO NOT RENAME. There are existing apps which use this string. --> |
| 539 | <action android:name="com.android.phone.CallFeaturesSetting.ADD_VOICEMAIL" /> |
| 540 | <category android:name="android.intent.category.DEFAULT" /> |
| 541 | </intent-filter> |
Tyler Gunn | dc6f2f5 | 2021-06-07 10:37:20 -0700 | [diff] [blame] | 542 | <intent-filter android:priority="1000"> |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 543 | <action android:name="android.telephony.action.CONFIGURE_VOICEMAIL" /> |
| 544 | <category android:name="android.intent.category.DEFAULT" /> |
| 545 | </intent-filter> |
| 546 | </activity> |
| 547 | |
| 548 | <!-- Telecom integration --> |
| 549 | <service |
| 550 | android:singleUser="true" |
| 551 | android:name="com.android.services.telephony.TelephonyConnectionService" |
| 552 | android:label="@string/pstn_connection_service_label" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 553 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 554 | android:permission="android.permission.BIND_TELECOM_CONNECTION_SERVICE" > |
| 555 | <intent-filter> |
| 556 | <action android:name="android.telecom.ConnectionService" /> |
| 557 | </intent-filter> |
| 558 | </service> |
| 559 | |
| 560 | <receiver |
| 561 | android:name="com.android.phone.vvm.VvmSmsReceiver" |
| 562 | android:exported="false" |
| 563 | androidprv:systemUserOnly="true"> |
| 564 | <intent-filter> |
| 565 | <action android:name="com.android.internal.provider.action.VOICEMAIL_SMS_RECEIVED"/> |
| 566 | </intent-filter> |
| 567 | </receiver> |
| 568 | |
| 569 | <receiver |
| 570 | android:name="com.android.phone.vvm.VvmSimStateTracker" |
| 571 | android:exported="false" |
| 572 | androidprv:systemUserOnly="true"> |
| 573 | <intent-filter> |
| 574 | <action android:name="android.intent.action.BOOT_COMPLETED"/> |
| 575 | <action android:name="android.telephony.action.CARRIER_CONFIG_CHANGED"/> |
| 576 | <action android:name="android.intent.action.SIM_STATE_CHANGED"/> |
| 577 | </intent-filter> |
| 578 | </receiver> |
| 579 | |
| 580 | <receiver |
| 581 | android:name="com.android.internal.telephony.uicc.ShowInstallAppNotificationReceiver" |
| 582 | android:exported="false"/> |
| 583 | |
Gil Cukierman | 23ade47 | 2023-12-14 10:53:02 -0500 | [diff] [blame] | 584 | <receiver |
| 585 | android:name=".security.SafetySourceReceiver" |
| 586 | android:exported="false"> |
| 587 | <intent-filter> |
| 588 | <action android:name="android.safetycenter.action.REFRESH_SAFETY_SOURCES"/> |
| 589 | </intent-filter> |
| 590 | </receiver> |
| 591 | |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 592 | <activity |
| 593 | android:name="com.android.phone.settings.PickSmsSubscriptionActivity" |
| 594 | android:exported="false" |
| 595 | android:excludeFromRecents="true" |
| 596 | android:launchMode="singleTop" |
| 597 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 598 | android:theme="@style/Theme.Transparent"/> |
| 599 | |
Ayush Sharma | 787854b | 2022-12-12 14:55:02 +0000 | [diff] [blame] | 600 | <activity |
| 601 | android:name="com.android.phone.ErrorDialogActivity" |
| 602 | android:exported="false" |
| 603 | android:excludeFromRecents="true" |
| 604 | android:launchMode="singleTop" |
| 605 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 606 | android:theme="@style/Theme.Telephony.Transparent"/> |
| 607 | |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 608 | <service |
| 609 | android:name="com.android.phone.vvm.RemoteVvmTaskManager" |
| 610 | android:exported="false"/> |
| 611 | <service android:name="com.android.internal.telephony.CellularNetworkService" |
Ashwini Oruganti | 3bc33a8 | 2020-05-28 12:27:38 -0700 | [diff] [blame] | 612 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 613 | android:permission="android.permission.BIND_TELEPHONY_NETWORK_SERVICE" > |
| 614 | <intent-filter> |
| 615 | <action android:name="android.telephony.NetworkService" /> |
| 616 | </intent-filter> |
| 617 | </service> |
Jack Yu | 2c6c646 | 2021-12-22 22:59:37 -0800 | [diff] [blame] | 618 | <service android:name="com.android.internal.telephony.data.CellularDataService" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 619 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 620 | android:permission="android.permission.BIND_TELEPHONY_DATA_SERVICE" > |
| 621 | <intent-filter> |
| 622 | <action android:name="android.telephony.data.DataService" /> |
| 623 | </intent-filter> |
| 624 | </service> |
| 625 | |
| 626 | <activity |
| 627 | android:name=".settings.RadioInfo" |
| 628 | android:label="@string/phone_info_label" |
Ashwini Oruganti | 4f2fb58 | 2020-03-23 17:11:13 -0700 | [diff] [blame] | 629 | android:exported="true" |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 630 | android:theme="@style/Theme.AppCompat.DayNight"> |
| 631 | <intent-filter> |
| 632 | <action android:name="android.intent.action.MAIN" /> |
| 633 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
| 634 | </intent-filter> |
| 635 | </activity> |
| 636 | |
Amit Mahajan | 750fe99 | 2020-02-05 01:41:40 +0000 | [diff] [blame] | 637 | <provider |
| 638 | android:name="ServiceStateProvider" |
| 639 | android:authorities="service-state" |
| 640 | android:exported="true" |
| 641 | android:multiprocess="false" |
| 642 | android:singleUser="true" |
| 643 | android:writePermission="android.permission.MODIFY_PHONE_STATE"/> |
Hwangoo Park | bf3968c | 2024-01-19 07:49:22 +0000 | [diff] [blame] | 644 | |
| 645 | <service android:name="com.android.services.telephony.domainselection.TelephonyDomainSelectionService" |
| 646 | android:exported="true" |
| 647 | android:permission="android.permission.BIND_DOMAIN_SELECTION_SERVICE"> |
| 648 | <intent-filter> |
| 649 | <action android:name="android.telephony.DomainSelectionService"/> |
| 650 | </intent-filter> |
| 651 | </service> |
Santos Cordon | 7d4ddf6 | 2013-07-10 11:58:08 -0700 | [diff] [blame] | 652 | </application> |
Amit Mahajan | 292beda | 2019-12-12 19:40:55 +0000 | [diff] [blame] | 653 | </manifest> |