Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2006 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" |
Jay Shrauner | 57ccf01 | 2014-03-21 14:12:36 -0700 | [diff] [blame] | 18 | package="com.android.dialer" |
Anthony Lee | f88d470 | 2015-08-12 14:35:25 -0700 | [diff] [blame] | 19 | coreApp="true" |
Brandon Maxwell | d28495c | 2016-02-17 10:20:44 -0800 | [diff] [blame] | 20 | android:versionCode="20501" |
| 21 | android:versionName="2.05.01"> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 22 | |
Yorke Lee | e772cc3 | 2015-06-25 10:19:09 -0700 | [diff] [blame] | 23 | <uses-sdk |
Jay Shrauner | f61a9a8 | 2015-07-14 09:24:06 -0700 | [diff] [blame] | 24 | android:minSdkVersion="23" |
| 25 | android:targetSdkVersion="23" /> |
Yorke Lee | e772cc3 | 2015-06-25 10:19:09 -0700 | [diff] [blame] | 26 | |
Yorke Lee | 72d5961 | 2014-07-18 09:08:51 -0700 | [diff] [blame] | 27 | <uses-permission android:name="android.permission.CALL_PHONE" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 29 | <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
| 30 | <uses-permission android:name="android.permission.READ_CALL_LOG" /> |
| 31 | <uses-permission android:name="android.permission.WRITE_CALL_LOG" /> |
Yorke Lee | 7d66134 | 2013-11-07 12:11:13 -0800 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.READ_PROFILE" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" /> |
| 34 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
| 35 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
| 36 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 37 | <uses-permission android:name="android.permission.INTERNET" /> |
Yorke Lee | 1197d33 | 2013-08-14 08:55:53 -0700 | [diff] [blame] | 38 | <uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"/> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 39 | <uses-permission android:name="android.permission.NFC" /> |
| 40 | <uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
| 41 | <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> |
| 42 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 43 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 44 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 45 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
| 46 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
| 47 | <uses-permission android:name="android.permission.VIBRATE" /> |
| 48 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
Tyler Gunn | 5426851 | 2014-08-18 16:24:05 -0700 | [diff] [blame] | 49 | <uses-permission android:name="android.permission.CONTROL_INCALL_EXPERIENCE" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 50 | <uses-permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL" /> |
Yorke Lee | 2cb39a6 | 2014-07-18 16:36:21 -0700 | [diff] [blame] | 51 | <uses-permission android:name="com.android.voicemail.permission.WRITE_VOICEMAIL" /> |
| 52 | <uses-permission android:name="com.android.voicemail.permission.READ_VOICEMAIL" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 53 | <uses-permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK" /> |
| 54 | <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 55 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
Evan Charlton | b6b3172 | 2014-09-15 09:25:39 -0700 | [diff] [blame] | 56 | <uses-permission android:name="android.permission.BROADCAST_STICKY" /> |
Andrew Lee | d04f11f | 2015-02-12 12:16:07 -0800 | [diff] [blame] | 57 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
Christine Chen | 28eb2f1 | 2013-10-07 11:44:06 -0700 | [diff] [blame] | 58 | <!-- This tells the activity manager to not delay any of our activity |
| 59 | start requests, even if they happen immediately after the user |
| 60 | presses home. --> |
| 61 | <uses-permission android:name="android.permission.STOP_APP_SWITCHES" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 62 | |
| 63 | <application |
Alon Albert | 05de701 | 2013-08-22 11:26:28 -0700 | [diff] [blame] | 64 | android:name="DialerApplication" |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 65 | android:label="@string/applicationLabel" |
Chiao Cheng | 437afcc | 2012-11-09 15:18:21 -0800 | [diff] [blame] | 66 | android:icon="@mipmap/ic_launcher_phone" |
Fabrice Di Meglio | c341db0 | 2013-04-03 21:11:37 -0700 | [diff] [blame] | 67 | android:hardwareAccelerated="true" |
Christine Chen | 9c1e065 | 2013-05-23 15:40:19 -0700 | [diff] [blame] | 68 | android:supportsRtl="true" |
Alex Klyubin | 45c1489 | 2015-04-02 10:41:18 -0700 | [diff] [blame] | 69 | android:backupAgent='com.android.dialer.DialerBackupAgent' |
Jeff Sharkey | 21421d8 | 2015-11-18 15:35:13 -0700 | [diff] [blame] | 70 | android:usesCleartextTraffic="false" |
| 71 | android:forceDeviceEncrypted="true" |
| 72 | android:encryptionAware="true"> |
Christine Chen | 9c1e065 | 2013-05-23 15:40:19 -0700 | [diff] [blame] | 73 | |
| 74 | <meta-data android:name="com.google.android.backup.api_key" |
| 75 | android:value="AEdPqrEAAAAIBXgtCEKQ6W0PXVnW-ZVia2KmlV2AxsTw3GjAeQ" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 76 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 77 | <!-- The entrance point for Phone UI. |
| 78 | stateAlwaysHidden is set to suppress keyboard show up on |
| 79 | dialpad screen. --> |
| 80 | <activity android:name=".DialtactsActivity" |
Jay Shrauner | bf8b4b9 | 2014-09-03 15:12:16 -0700 | [diff] [blame] | 81 | android:label="@string/launcherActivityLabel" |
Yorke Lee | be10b41 | 2014-04-23 19:14:12 -0700 | [diff] [blame] | 82 | android:theme="@style/DialtactsActivityTheme" |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 83 | android:launchMode="singleTask" |
| 84 | android:clearTaskOnLaunch="true" |
| 85 | android:icon="@mipmap/ic_launcher_phone" |
Nancy Chen | d4c8d5a | 2016-01-28 15:12:11 -0800 | [diff] [blame] | 86 | android:windowSoftInputMode="stateAlwaysHidden|adjustNothing" |
| 87 | android:resizeableActivity="true" |
| 88 | > |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 89 | <intent-filter> |
| 90 | <action android:name="android.intent.action.DIAL" /> |
| 91 | <category android:name="android.intent.category.DEFAULT" /> |
| 92 | <category android:name="android.intent.category.BROWSABLE" /> |
| 93 | <data android:mimeType="vnd.android.cursor.item/phone" /> |
| 94 | <data android:mimeType="vnd.android.cursor.item/person" /> |
| 95 | </intent-filter> |
| 96 | <intent-filter> |
| 97 | <action android:name="android.intent.action.DIAL" /> |
| 98 | <category android:name="android.intent.category.DEFAULT" /> |
| 99 | <category android:name="android.intent.category.BROWSABLE" /> |
| 100 | <data android:scheme="voicemail" /> |
| 101 | </intent-filter> |
| 102 | <intent-filter> |
| 103 | <action android:name="android.intent.action.DIAL" /> |
| 104 | <category android:name="android.intent.category.DEFAULT" /> |
| 105 | </intent-filter> |
| 106 | <intent-filter> |
| 107 | <action android:name="android.intent.action.MAIN" /> |
| 108 | <category android:name="android.intent.category.DEFAULT" /> |
| 109 | <category android:name="android.intent.category.LAUNCHER" /> |
| 110 | <category android:name="android.intent.category.BROWSABLE" /> |
| 111 | </intent-filter> |
| 112 | <intent-filter> |
| 113 | <action android:name="android.intent.action.VIEW" /> |
| 114 | <action android:name="android.intent.action.DIAL" /> |
| 115 | <category android:name="android.intent.category.DEFAULT" /> |
| 116 | <category android:name="android.intent.category.BROWSABLE" /> |
| 117 | <data android:scheme="tel" /> |
| 118 | </intent-filter> |
| 119 | <intent-filter> |
Nancy Chen | 019713e | 2015-07-06 18:25:24 -0700 | [diff] [blame] | 120 | <action android:name="android.intent.action.VIEW" /> |
| 121 | <category android:name="android.intent.category.DEFAULT" /> |
| 122 | <category android:name="android.intent.category.BROWSABLE" /> |
| 123 | <data android:mimeType="vnd.android.cursor.dir/calls" /> |
| 124 | </intent-filter> |
| 125 | <intent-filter> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 126 | <action android:name="android.intent.action.CALL_BUTTON" /> |
| 127 | <category android:name="android.intent.category.DEFAULT" /> |
| 128 | <category android:name="android.intent.category.BROWSABLE" /> |
| 129 | </intent-filter> |
| 130 | <!-- This was never intended to be public, but is here for backward |
| 131 | compatibility. Use Intent.ACTION_DIAL instead. --> |
| 132 | <intent-filter> |
| 133 | <action android:name="com.android.phone.action.TOUCH_DIALER" /> |
| 134 | <category android:name="android.intent.category.DEFAULT" /> |
| 135 | <category android:name="android.intent.category.TAB" /> |
| 136 | </intent-filter> |
Andrew Lee | 4de59fb | 2015-08-13 15:20:08 -0700 | [diff] [blame] | 137 | <intent-filter android:label="@string/callHistoryIconLabel"> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 138 | <action android:name="com.android.phone.action.RECENT_CALLS" /> |
| 139 | <category android:name="android.intent.category.DEFAULT" /> |
| 140 | <category android:name="android.intent.category.TAB" /> |
| 141 | </intent-filter> |
Jorim Jaggi | da1da5d | 2014-07-25 22:13:24 +0200 | [diff] [blame] | 142 | <meta-data |
| 143 | android:name="com.android.keyguard.layout" |
| 144 | android:resource="@layout/keyguard_preview" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 145 | </activity> |
| 146 | |
Yorke Lee | af6f195 | 2014-07-14 19:13:16 -0700 | [diff] [blame] | 147 | <activity android:name="com.android.dialer.settings.DialerSettingsActivity" |
Andrew Lee | 3663afe | 2015-10-04 01:31:28 -0700 | [diff] [blame] | 148 | android:label="@string/dialer_settings_label" |
| 149 | android:parentActivityName="com.android.dialer.DialtactsActivity" |
| 150 | android:theme="@style/SettingsStyle" |
| 151 | android:exported="false"> |
Yorke Lee | af6f195 | 2014-07-14 19:13:16 -0700 | [diff] [blame] | 152 | </activity> |
| 153 | |
Andrew Lee | 91cd89c | 2015-10-28 17:47:42 -0700 | [diff] [blame] | 154 | <activity android:name="com.android.dialer.filterednumber.BlockedNumbersSettingsActivity" |
Andrew Lee | 3663afe | 2015-10-04 01:31:28 -0700 | [diff] [blame] | 155 | android:label="@string/manage_blocked_numbers_label" |
Anne Rong | e78b54c | 2015-09-28 11:18:42 -0700 | [diff] [blame] | 156 | android:parentActivityName="com.android.dialer.settings.DialerSettingsActivity" |
Andrew Lee | 3663afe | 2015-10-04 01:31:28 -0700 | [diff] [blame] | 157 | android:theme="@style/ManageBlockedNumbersStyle" |
| 158 | android:exported="false"> |
Anne Rong | e78b54c | 2015-09-28 11:18:42 -0700 | [diff] [blame] | 159 | </activity> |
| 160 | |
Yorke Lee | c376633 | 2013-07-31 11:13:16 -0700 | [diff] [blame] | 161 | <activity android:name="com.android.dialer.calllog.CallLogActivity" |
| 162 | android:label="@string/call_log_activity_title" |
Yorke Lee | 86e21f7 | 2014-04-02 16:49:38 -0700 | [diff] [blame] | 163 | android:theme="@style/DialtactsThemeWithoutActionBarOverlay" |
Yorke Lee | c376633 | 2013-07-31 11:13:16 -0700 | [diff] [blame] | 164 | android:icon="@mipmap/ic_launcher_phone"> |
Yorke Lee | dfb2eee | 2013-06-26 18:24:32 -0700 | [diff] [blame] | 165 | </activity> |
| 166 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 167 | <activity android:name="com.android.dialer.CallDetailActivity" |
Andrew Lee | 3663afe | 2015-10-04 01:31:28 -0700 | [diff] [blame] | 168 | android:label="@string/callDetailTitle" |
| 169 | android:theme="@style/CallDetailActivityTheme" |
| 170 | android:icon="@mipmap/ic_launcher_phone"> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 171 | <intent-filter> |
| 172 | <action android:name="android.intent.action.VIEW"/> |
| 173 | <category android:name="android.intent.category.DEFAULT"/> |
| 174 | <data android:mimeType="vnd.android.cursor.item/calls"/> |
| 175 | </intent-filter> |
| 176 | </activity> |
| 177 | |
| 178 | <activity android:name="com.android.contacts.common.test.FragmentTestActivity"> |
| 179 | <intent-filter> |
| 180 | <category android:name="android.intent.category.TEST"/> |
| 181 | </intent-filter> |
| 182 | </activity> |
| 183 | |
Tyler Gunn | 476bd26 | 2015-08-10 10:03:37 -0700 | [diff] [blame] | 184 | <activity android:name="com.android.contacts.common.dialog.CallSubjectDialog" |
| 185 | android:theme="@style/Theme.CallSubjectDialogTheme" |
| 186 | android:windowSoftInputMode="stateVisible|adjustResize"> |
Tyler Gunn | c72f419 | 2015-08-05 14:34:28 -0700 | [diff] [blame] | 187 | <intent-filter> |
| 188 | <action android:name="android.intent.action.VIEW"/> |
| 189 | </intent-filter> |
| 190 | </activity> |
| 191 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 192 | <!-- Backwards compatibility: "Phone" from Gingerbread and earlier --> |
| 193 | <activity-alias android:name="DialtactsActivity" |
| 194 | android:targetActivity=".DialtactsActivity" |
| 195 | android:exported="true" |
| 196 | /> |
| 197 | |
| 198 | <!-- Backwards compatibility: "Call log" from Gingerbread and earlier --> |
| 199 | <activity-alias android:name="RecentCallsListActivity" |
| 200 | android:targetActivity=".DialtactsActivity" |
| 201 | android:exported="true" |
| 202 | /> |
| 203 | |
| 204 | <!-- Backwards compatibility: "Call log" from ICS --> |
| 205 | <activity-alias android:name=".activities.CallLogActivity" |
| 206 | android:targetActivity=".DialtactsActivity" |
| 207 | android:exported="true" |
| 208 | /> |
| 209 | |
Chiao Cheng | e1d6477 | 2012-10-29 18:32:25 -0700 | [diff] [blame] | 210 | <!-- Used to filter contacts list by account --> |
| 211 | <activity |
Chiao Cheng | 82d544d | 2012-11-30 13:32:24 -0800 | [diff] [blame] | 212 | android:name="com.android.contacts.common.list.AccountFilterActivity" |
Chiao Cheng | e1d6477 | 2012-10-29 18:32:25 -0700 | [diff] [blame] | 213 | android:label="@string/activity_title_contacts_filter" |
| 214 | android:theme="@style/ContactListFilterTheme"/> |
| 215 | |
| 216 | <!-- Used to select display and sync groups --> |
| 217 | <activity |
Chiao Cheng | 82d544d | 2012-11-30 13:32:24 -0800 | [diff] [blame] | 218 | android:name="com.android.contacts.common.list.CustomContactListFilterActivity" |
Chiao Cheng | e1d6477 | 2012-10-29 18:32:25 -0700 | [diff] [blame] | 219 | android:label="@string/custom_list_filter" |
| 220 | android:theme="@style/ContactListFilterTheme"/> |
| 221 | |
Brian Attwell | bd53eb4 | 2015-05-11 17:18:07 -0700 | [diff] [blame] | 222 | <activity |
| 223 | android:name="com.android.contacts.common.activity.RequestImportVCardPermissionsActivity" |
| 224 | android:label="@string/launcherActivityLabel" |
| 225 | android:theme="@style/BackgroundOnlyTheme" |
| 226 | android:exported="false"/> |
| 227 | |
Chiao Cheng | 8378c57 | 2012-12-03 17:17:52 -0800 | [diff] [blame] | 228 | <!-- vCard related --> |
| 229 | <activity android:name="com.android.contacts.common.vcard.ImportVCardActivity" |
| 230 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 231 | android:theme="@style/BackgroundOnlyTheme"> |
Chiao Cheng | 8378c57 | 2012-12-03 17:17:52 -0800 | [diff] [blame] | 232 | </activity> |
| 233 | |
| 234 | <activity android:name="com.android.contacts.common.vcard.NfcImportVCardActivity" |
| 235 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 236 | android:theme="@style/BackgroundOnlyTheme"> |
Chiao Cheng | 8378c57 | 2012-12-03 17:17:52 -0800 | [diff] [blame] | 237 | </activity> |
| 238 | |
| 239 | <activity android:name="com.android.contacts.common.vcard.CancelActivity" |
| 240 | android:theme="@style/BackgroundOnlyTheme"/> |
| 241 | |
| 242 | <activity android:name="com.android.contacts.common.vcard.SelectAccountActivity" |
| 243 | android:theme="@style/BackgroundOnlyTheme"/> |
| 244 | |
| 245 | <activity android:name="com.android.contacts.common.vcard.ExportVCardActivity" |
| 246 | android:theme="@style/BackgroundOnlyTheme"/> |
| 247 | |
| 248 | <service |
| 249 | android:name="com.android.contacts.common.vcard.VCardService" |
| 250 | android:exported="false"/> |
| 251 | <!-- end vCard related --> |
| 252 | |
Jay Shrauner | 6e826d7 | 2015-11-17 14:41:58 -0800 | [diff] [blame] | 253 | <receiver android:name=".calllog.CallLogReceiver"> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 254 | <intent-filter> |
| 255 | <action android:name="android.intent.action.NEW_VOICEMAIL" /> |
| 256 | <data |
| 257 | android:scheme="content" |
| 258 | android:host="com.android.voicemail" |
| 259 | android:mimeType="vnd.android.cursor.item/voicemail" |
| 260 | /> |
| 261 | </intent-filter> |
| 262 | <intent-filter android:priority="100"> |
| 263 | <action android:name="android.intent.action.BOOT_COMPLETED"/> |
| 264 | </intent-filter> |
| 265 | </receiver> |
| 266 | |
Yorke Lee | 1197d33 | 2013-08-14 08:55:53 -0700 | [diff] [blame] | 267 | <receiver android:name=".interactions.UndemoteOutgoingCallReceiver"> |
| 268 | <intent-filter> |
| 269 | <action android:name="android.intent.action.NEW_OUTGOING_CALL" /> |
| 270 | </intent-filter> |
| 271 | </receiver> |
| 272 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 273 | <service |
| 274 | android:name=".calllog.CallLogNotificationsService" |
| 275 | android:exported="false" |
| 276 | /> |
Yorke Lee | 81e0da4 | 2013-01-30 14:56:19 -0800 | [diff] [blame] | 277 | |
Nancy Chen | cc42b59 | 2016-01-26 14:38:57 -0800 | [diff] [blame] | 278 | <receiver android:name=".calllog.MissedCallNotificationReceiver"> |
| 279 | <intent-filter> |
| 280 | <action android:name="android.telecom.action.SHOW_MISSED_CALLS_NOTIFICATION" /> |
| 281 | </intent-filter> |
| 282 | </receiver> |
| 283 | |
Yorke Lee | 81e0da4 | 2013-01-30 14:56:19 -0800 | [diff] [blame] | 284 | <!-- Service to update a contact --> |
| 285 | <service |
| 286 | android:name=".contact.ContactUpdateService" |
| 287 | android:exported="false" /> |
Santos Cordon | c286ae2 | 2013-09-03 15:58:07 -0700 | [diff] [blame] | 288 | |
Yorke Lee | 294dadd | 2014-06-13 14:54:40 -0700 | [diff] [blame] | 289 | <!-- Broadcast receiver that passively listens to location updates --> |
| 290 | <receiver android:name="com.android.contacts.common.location.CountryDetector$LocationChangedReceiver"/> |
| 291 | |
| 292 | <!-- IntentService to update the user's current country --> |
| 293 | <service android:name="com.android.contacts.common.location.UpdateCountryService" |
| 294 | android:exported="false"/> |
| 295 | |
Santos Cordon | c286ae2 | 2013-09-03 15:58:07 -0700 | [diff] [blame] | 296 | <!-- Main in-call UI activity. This is never launched directly |
| 297 | from outside the phone app; instead, it's either launched by |
| 298 | the OutgoingCallBroadcaster (for outgoing calls), or as the |
| 299 | fullScreenIntent of a notification (for incoming calls.) --> |
| 300 | <activity android:name="com.android.incallui.InCallActivity" |
| 301 | android:theme="@style/Theme.InCallScreen" |
Santos Cordon | e8c54f9 | 2013-09-04 15:33:51 -0700 | [diff] [blame] | 302 | android:label="@string/phoneAppLabel" |
Santos Cordon | c286ae2 | 2013-09-03 15:58:07 -0700 | [diff] [blame] | 303 | android:excludeFromRecents="true" |
| 304 | android:launchMode="singleInstance" |
Santos Cordon | c286ae2 | 2013-09-03 15:58:07 -0700 | [diff] [blame] | 305 | android:configChanges="keyboardHidden" |
| 306 | android:exported="false" |
Brandon Maxwell | 6773df0 | 2016-01-14 15:31:42 -0800 | [diff] [blame] | 307 | android:screenOrientation="nosensor" |
| 308 | android:encryptionAware="true" > |
Santos Cordon | c286ae2 | 2013-09-03 15:58:07 -0700 | [diff] [blame] | 309 | </activity> |
| 310 | |
Santos Cordon | c286ae2 | 2013-09-03 15:58:07 -0700 | [diff] [blame] | 311 | <!-- BroadcastReceiver for receiving Intents from Notification mechanism. --> |
Yorke Lee | d9602d0 | 2015-05-19 16:36:22 -0700 | [diff] [blame] | 312 | <receiver android:name="com.android.incallui.NotificationBroadcastReceiver" |
| 313 | android:exported="false" /> |
Santos Cordon | c286ae2 | 2013-09-03 15:58:07 -0700 | [diff] [blame] | 314 | |
Santos Cordon | 77cecf2 | 2014-06-26 14:50:10 -0700 | [diff] [blame] | 315 | <service android:name="com.android.incallui.InCallServiceImpl" |
Brandon Maxwell | 6773df0 | 2016-01-14 15:31:42 -0800 | [diff] [blame] | 316 | android:permission="android.permission.BIND_INCALL_SERVICE" |
| 317 | android:encryptionAware="true" > |
Santos Cordon | e911779 | 2015-06-23 15:14:03 -0700 | [diff] [blame] | 318 | <meta-data android:name="android.telecom.IN_CALL_SERVICE_UI" android:value="true" /> |
Brandon Maxwell | 88bbc3e | 2016-01-27 18:11:47 -0800 | [diff] [blame] | 319 | <meta-data android:name="android.telecom.IN_CALL_SERVICE_RINGING" |
Brandon Maxwell | 9172c90 | 2016-02-16 12:52:34 -0800 | [diff] [blame] | 320 | android:value="true"/> |
Santos Cordon | 77cecf2 | 2014-06-26 14:50:10 -0700 | [diff] [blame] | 321 | <intent-filter> |
Tyler Gunn | 9dc924c | 2014-09-12 09:33:50 -0700 | [diff] [blame] | 322 | <action android:name="android.telecom.InCallService"/> |
Santos Cordon | 77cecf2 | 2014-06-26 14:50:10 -0700 | [diff] [blame] | 323 | </intent-filter> |
| 324 | </service> |
Anne Rong | 6fcdcc1 | 2015-08-10 17:45:55 -0700 | [diff] [blame] | 325 | |
| 326 | <provider |
| 327 | android:name=".database.FilteredNumberProvider" |
Anne Rong | 7e488f5 | 2015-08-19 18:32:08 -0700 | [diff] [blame] | 328 | android:authorities="com.android.dialer.database.filterednumberprovider" |
Anne Rong | 6fcdcc1 | 2015-08-10 17:45:55 -0700 | [diff] [blame] | 329 | android:exported="false" |
| 330 | android:multiprocess="false" |
| 331 | /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 332 | </application> |
| 333 | </manifest> |