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 | cb53f98 | 2016-03-15 18:45:06 -0700 | [diff] [blame] | 20 | android:versionCode="30000" |
| 21 | android:versionName="3.00.00"> |
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" /> |
Ta-wei Yen | 6d8acb2 | 2016-03-07 14:20:57 -0800 | [diff] [blame] | 35 | <uses-permission android:name="android.permission.GET_ACCOUNTS_PRIVILEGED"/> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 36 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
| 37 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 38 | <uses-permission android:name="android.permission.INTERNET" /> |
Yorke Lee | 1197d33 | 2013-08-14 08:55:53 -0700 | [diff] [blame] | 39 | <uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"/> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 40 | <uses-permission android:name="android.permission.NFC" /> |
| 41 | <uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
Shammi Khattar | d8c460b | 2015-12-16 12:41:16 -0800 | [diff] [blame] | 42 | <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 43 | <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> |
| 44 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
Fang Yunong | ed1f20a | 2015-11-24 16:39:40 +0800 | [diff] [blame] | 45 | <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 46 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
| 47 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 48 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
| 49 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
| 50 | <uses-permission android:name="android.permission.VIBRATE" /> |
Qiang Chen | 21b49b1 | 2016-06-23 17:54:06 +0800 | [diff] [blame] | 51 | <uses-permission android:name="com.qualcomm.permission.USE_PHONE_SERVICE" /> |
| 52 | <uses-permission android:name="android.permission.CAPTURE_AUDIO_OUTPUT" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 53 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
Tyler Gunn | 5426851 | 2014-08-18 16:24:05 -0700 | [diff] [blame] | 54 | <uses-permission android:name="android.permission.CONTROL_INCALL_EXPERIENCE" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 55 | <uses-permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL" /> |
Yorke Lee | 2cb39a6 | 2014-07-18 16:36:21 -0700 | [diff] [blame] | 56 | <uses-permission android:name="com.android.voicemail.permission.WRITE_VOICEMAIL" /> |
| 57 | <uses-permission android:name="com.android.voicemail.permission.READ_VOICEMAIL" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 58 | <uses-permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK" /> |
| 59 | <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 60 | <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> |
Evan Charlton | b6b3172 | 2014-09-15 09:25:39 -0700 | [diff] [blame] | 61 | <uses-permission android:name="android.permission.BROADCAST_STICKY" /> |
beanstown106 | 93f7482 | 2015-10-15 10:56:44 -0400 | [diff] [blame] | 62 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS"/> |
Andrew Lee | d04f11f | 2015-02-12 12:16:07 -0800 | [diff] [blame] | 63 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
Fang Yunong | ed1f20a | 2015-11-24 16:39:40 +0800 | [diff] [blame] | 64 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> |
Fang Yunong | da0ed54 | 2016-10-17 15:37:02 +0800 | [diff] [blame] | 65 | <uses-permission android:name="android.permission.CONNECTIVITY_INTERNAL" /> |
| 66 | <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" /> |
Ruthwar Kumar Ambeer | aa3bd7c | 2016-07-29 18:07:57 +0530 | [diff] [blame] | 67 | <uses-permission android:name="android.permission.CALL_PRIVILEGED" /> |
Christine Chen | 28eb2f1 | 2013-10-07 11:44:06 -0700 | [diff] [blame] | 68 | <!-- This tells the activity manager to not delay any of our activity |
| 69 | start requests, even if they happen immediately after the user |
| 70 | presses home. --> |
| 71 | <uses-permission android:name="android.permission.STOP_APP_SWITCHES" /> |
beanstown106 | 93f7482 | 2015-10-15 10:56:44 -0400 | [diff] [blame] | 72 | <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 73 | |
| 74 | <application |
Alon Albert | 05de701 | 2013-08-22 11:26:28 -0700 | [diff] [blame] | 75 | android:name="DialerApplication" |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 76 | android:label="@string/applicationLabel" |
Chiao Cheng | 437afcc | 2012-11-09 15:18:21 -0800 | [diff] [blame] | 77 | android:icon="@mipmap/ic_launcher_phone" |
Fabrice Di Meglio | c341db0 | 2013-04-03 21:11:37 -0700 | [diff] [blame] | 78 | android:hardwareAccelerated="true" |
Christine Chen | 9c1e065 | 2013-05-23 15:40:19 -0700 | [diff] [blame] | 79 | android:supportsRtl="true" |
Alex Klyubin | 45c1489 | 2015-04-02 10:41:18 -0700 | [diff] [blame] | 80 | android:backupAgent='com.android.dialer.DialerBackupAgent' |
Jeff Sharkey | 23a6076 | 2016-03-17 11:01:30 -0600 | [diff] [blame] | 81 | android:usesCleartextTraffic="false"> |
Christine Chen | 9c1e065 | 2013-05-23 15:40:19 -0700 | [diff] [blame] | 82 | |
| 83 | <meta-data android:name="com.google.android.backup.api_key" |
| 84 | android:value="AEdPqrEAAAAIBXgtCEKQ6W0PXVnW-ZVia2KmlV2AxsTw3GjAeQ" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 85 | |
Zhu Youhua | e47ebf0 | 2016-06-02 20:23:21 +0800 | [diff] [blame] | 86 | <uses-library android:name="com.qualcomm.qti.smartsearch" android:required="false" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 87 | <!-- The entrance point for Phone UI. |
| 88 | stateAlwaysHidden is set to suppress keyboard show up on |
| 89 | dialpad screen. --> |
| 90 | <activity android:name=".DialtactsActivity" |
Jay Shrauner | bf8b4b9 | 2014-09-03 15:12:16 -0700 | [diff] [blame] | 91 | android:label="@string/launcherActivityLabel" |
Yorke Lee | be10b41 | 2014-04-23 19:14:12 -0700 | [diff] [blame] | 92 | android:theme="@style/DialtactsActivityTheme" |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 93 | android:launchMode="singleTask" |
| 94 | android:clearTaskOnLaunch="true" |
| 95 | android:icon="@mipmap/ic_launcher_phone" |
Nancy Chen | d4c8d5a | 2016-01-28 15:12:11 -0800 | [diff] [blame] | 96 | android:windowSoftInputMode="stateAlwaysHidden|adjustNothing" |
| 97 | android:resizeableActivity="true" |
Jeff Sharkey | 23a6076 | 2016-03-17 11:01:30 -0600 | [diff] [blame] | 98 | android:directBootAware="true"> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 99 | <intent-filter> |
| 100 | <action android:name="android.intent.action.DIAL" /> |
| 101 | <category android:name="android.intent.category.DEFAULT" /> |
| 102 | <category android:name="android.intent.category.BROWSABLE" /> |
| 103 | <data android:mimeType="vnd.android.cursor.item/phone" /> |
| 104 | <data android:mimeType="vnd.android.cursor.item/person" /> |
| 105 | </intent-filter> |
| 106 | <intent-filter> |
| 107 | <action android:name="android.intent.action.DIAL" /> |
| 108 | <category android:name="android.intent.category.DEFAULT" /> |
| 109 | <category android:name="android.intent.category.BROWSABLE" /> |
| 110 | <data android:scheme="voicemail" /> |
| 111 | </intent-filter> |
| 112 | <intent-filter> |
| 113 | <action android:name="android.intent.action.DIAL" /> |
| 114 | <category android:name="android.intent.category.DEFAULT" /> |
| 115 | </intent-filter> |
| 116 | <intent-filter> |
| 117 | <action android:name="android.intent.action.MAIN" /> |
| 118 | <category android:name="android.intent.category.DEFAULT" /> |
| 119 | <category android:name="android.intent.category.LAUNCHER" /> |
| 120 | <category android:name="android.intent.category.BROWSABLE" /> |
| 121 | </intent-filter> |
| 122 | <intent-filter> |
| 123 | <action android:name="android.intent.action.VIEW" /> |
| 124 | <action android:name="android.intent.action.DIAL" /> |
| 125 | <category android:name="android.intent.category.DEFAULT" /> |
| 126 | <category android:name="android.intent.category.BROWSABLE" /> |
| 127 | <data android:scheme="tel" /> |
| 128 | </intent-filter> |
| 129 | <intent-filter> |
Nancy Chen | 019713e | 2015-07-06 18:25:24 -0700 | [diff] [blame] | 130 | <action android:name="android.intent.action.VIEW" /> |
| 131 | <category android:name="android.intent.category.DEFAULT" /> |
| 132 | <category android:name="android.intent.category.BROWSABLE" /> |
| 133 | <data android:mimeType="vnd.android.cursor.dir/calls" /> |
| 134 | </intent-filter> |
| 135 | <intent-filter> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 136 | <action android:name="android.intent.action.CALL_BUTTON" /> |
| 137 | <category android:name="android.intent.category.DEFAULT" /> |
| 138 | <category android:name="android.intent.category.BROWSABLE" /> |
| 139 | </intent-filter> |
| 140 | <!-- This was never intended to be public, but is here for backward |
| 141 | compatibility. Use Intent.ACTION_DIAL instead. --> |
| 142 | <intent-filter> |
| 143 | <action android:name="com.android.phone.action.TOUCH_DIALER" /> |
| 144 | <category android:name="android.intent.category.DEFAULT" /> |
| 145 | <category android:name="android.intent.category.TAB" /> |
| 146 | </intent-filter> |
Andrew Lee | 4de59fb | 2015-08-13 15:20:08 -0700 | [diff] [blame] | 147 | <intent-filter android:label="@string/callHistoryIconLabel"> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 148 | <action android:name="com.android.phone.action.RECENT_CALLS" /> |
| 149 | <category android:name="android.intent.category.DEFAULT" /> |
| 150 | <category android:name="android.intent.category.TAB" /> |
| 151 | </intent-filter> |
Jorim Jaggi | da1da5d | 2014-07-25 22:13:24 +0200 | [diff] [blame] | 152 | <meta-data |
| 153 | android:name="com.android.keyguard.layout" |
| 154 | android:resource="@layout/keyguard_preview" /> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 155 | </activity> |
| 156 | |
Yorke Lee | af6f195 | 2014-07-14 19:13:16 -0700 | [diff] [blame] | 157 | <activity android:name="com.android.dialer.settings.DialerSettingsActivity" |
Andrew Lee | 3663afe | 2015-10-04 01:31:28 -0700 | [diff] [blame] | 158 | android:label="@string/dialer_settings_label" |
| 159 | android:parentActivityName="com.android.dialer.DialtactsActivity" |
| 160 | android:theme="@style/SettingsStyle" |
| 161 | android:exported="false"> |
Yorke Lee | af6f195 | 2014-07-14 19:13:16 -0700 | [diff] [blame] | 162 | </activity> |
| 163 | |
Andrew Lee | 91cd89c | 2015-10-28 17:47:42 -0700 | [diff] [blame] | 164 | <activity android:name="com.android.dialer.filterednumber.BlockedNumbersSettingsActivity" |
Andrew Lee | 3663afe | 2015-10-04 01:31:28 -0700 | [diff] [blame] | 165 | android:label="@string/manage_blocked_numbers_label" |
Anne Rong | e78b54c | 2015-09-28 11:18:42 -0700 | [diff] [blame] | 166 | android:parentActivityName="com.android.dialer.settings.DialerSettingsActivity" |
Andrew Lee | 3663afe | 2015-10-04 01:31:28 -0700 | [diff] [blame] | 167 | android:theme="@style/ManageBlockedNumbersStyle" |
| 168 | android:exported="false"> |
Anne Rong | e78b54c | 2015-09-28 11:18:42 -0700 | [diff] [blame] | 169 | </activity> |
| 170 | |
Sarmad Hashmi | 3694b11 | 2016-02-17 17:39:36 -0800 | [diff] [blame] | 171 | <activity android:name="com.android.dialer.voicemail.VoicemailArchiveActivity" |
| 172 | android:label="@string/voicemail_archive_activity_title" |
| 173 | android:theme="@style/DialtactsThemeWithoutActionBarOverlay"> |
| 174 | </activity> |
| 175 | |
Yorke Lee | c376633 | 2013-07-31 11:13:16 -0700 | [diff] [blame] | 176 | <activity android:name="com.android.dialer.calllog.CallLogActivity" |
Li Wei | adecbba | 2016-08-31 11:42:07 +0800 | [diff] [blame] | 177 | android:configChanges="orientation|screenSize|keyboardHidden" |
Yorke Lee | c376633 | 2013-07-31 11:13:16 -0700 | [diff] [blame] | 178 | android:label="@string/call_log_activity_title" |
Yorke Lee | 86e21f7 | 2014-04-02 16:49:38 -0700 | [diff] [blame] | 179 | android:theme="@style/DialtactsThemeWithoutActionBarOverlay" |
Yorke Lee | c376633 | 2013-07-31 11:13:16 -0700 | [diff] [blame] | 180 | android:icon="@mipmap/ic_launcher_phone"> |
Yorke Lee | dfb2eee | 2013-06-26 18:24:32 -0700 | [diff] [blame] | 181 | </activity> |
| 182 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 183 | <activity android:name="com.android.dialer.CallDetailActivity" |
Andrew Lee | 3663afe | 2015-10-04 01:31:28 -0700 | [diff] [blame] | 184 | android:label="@string/callDetailTitle" |
| 185 | android:theme="@style/CallDetailActivityTheme" |
Brandon Maxwell | 7457ef7 | 2016-09-26 12:37:29 -0700 | [diff] [blame] | 186 | android:parentActivityName="com.android.dialer.calllog.CallLogActivity" |
Andrew Lee | 3663afe | 2015-10-04 01:31:28 -0700 | [diff] [blame] | 187 | android:icon="@mipmap/ic_launcher_phone"> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 188 | <intent-filter> |
| 189 | <action android:name="android.intent.action.VIEW"/> |
| 190 | <category android:name="android.intent.category.DEFAULT"/> |
| 191 | <data android:mimeType="vnd.android.cursor.item/calls"/> |
| 192 | </intent-filter> |
| 193 | </activity> |
| 194 | |
| 195 | <activity android:name="com.android.contacts.common.test.FragmentTestActivity"> |
| 196 | <intent-filter> |
| 197 | <category android:name="android.intent.category.TEST"/> |
| 198 | </intent-filter> |
| 199 | </activity> |
| 200 | |
Tyler Gunn | 476bd26 | 2015-08-10 10:03:37 -0700 | [diff] [blame] | 201 | <activity android:name="com.android.contacts.common.dialog.CallSubjectDialog" |
| 202 | android:theme="@style/Theme.CallSubjectDialogTheme" |
| 203 | android:windowSoftInputMode="stateVisible|adjustResize"> |
Tyler Gunn | c72f419 | 2015-08-05 14:34:28 -0700 | [diff] [blame] | 204 | <intent-filter> |
| 205 | <action android:name="android.intent.action.VIEW"/> |
| 206 | </intent-filter> |
| 207 | </activity> |
| 208 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 209 | <!-- Backwards compatibility: "Phone" from Gingerbread and earlier --> |
| 210 | <activity-alias android:name="DialtactsActivity" |
| 211 | android:targetActivity=".DialtactsActivity" |
| 212 | android:exported="true" |
| 213 | /> |
| 214 | |
| 215 | <!-- Backwards compatibility: "Call log" from Gingerbread and earlier --> |
| 216 | <activity-alias android:name="RecentCallsListActivity" |
| 217 | android:targetActivity=".DialtactsActivity" |
| 218 | android:exported="true" |
| 219 | /> |
| 220 | |
| 221 | <!-- Backwards compatibility: "Call log" from ICS --> |
| 222 | <activity-alias android:name=".activities.CallLogActivity" |
| 223 | android:targetActivity=".DialtactsActivity" |
| 224 | android:exported="true" |
| 225 | /> |
| 226 | |
Chiao Cheng | e1d6477 | 2012-10-29 18:32:25 -0700 | [diff] [blame] | 227 | <!-- Used to filter contacts list by account --> |
| 228 | <activity |
Chiao Cheng | 82d544d | 2012-11-30 13:32:24 -0800 | [diff] [blame] | 229 | android:name="com.android.contacts.common.list.AccountFilterActivity" |
Chiao Cheng | e1d6477 | 2012-10-29 18:32:25 -0700 | [diff] [blame] | 230 | android:label="@string/activity_title_contacts_filter" |
| 231 | android:theme="@style/ContactListFilterTheme"/> |
| 232 | |
| 233 | <!-- Used to select display and sync groups --> |
| 234 | <activity |
Chiao Cheng | 82d544d | 2012-11-30 13:32:24 -0800 | [diff] [blame] | 235 | android:name="com.android.contacts.common.list.CustomContactListFilterActivity" |
Chiao Cheng | e1d6477 | 2012-10-29 18:32:25 -0700 | [diff] [blame] | 236 | android:label="@string/custom_list_filter" |
| 237 | android:theme="@style/ContactListFilterTheme"/> |
| 238 | |
Brian Attwell | bd53eb4 | 2015-05-11 17:18:07 -0700 | [diff] [blame] | 239 | <activity |
| 240 | android:name="com.android.contacts.common.activity.RequestImportVCardPermissionsActivity" |
| 241 | android:label="@string/launcherActivityLabel" |
| 242 | android:theme="@style/BackgroundOnlyTheme" |
| 243 | android:exported="false"/> |
| 244 | |
Fang Yunong | 72e8ce8 | 2016-08-08 19:59:47 +0800 | [diff] [blame] | 245 | <activity android:name=".VideoCallWelcomeActivity" |
| 246 | android:theme="@*android:style/Theme.DeviceDefault.Light.Dialog.Alert" |
| 247 | android:finishOnCloseSystemDialogs="true" |
| 248 | android:excludeFromRecents="true" |
| 249 | android:exported="false" /> |
| 250 | |
Chiao Cheng | 8378c57 | 2012-12-03 17:17:52 -0800 | [diff] [blame] | 251 | <!-- vCard related --> |
| 252 | <activity android:name="com.android.contacts.common.vcard.ImportVCardActivity" |
| 253 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 254 | android:theme="@style/BackgroundOnlyTheme"> |
Chiao Cheng | 8378c57 | 2012-12-03 17:17:52 -0800 | [diff] [blame] | 255 | </activity> |
| 256 | |
| 257 | <activity android:name="com.android.contacts.common.vcard.NfcImportVCardActivity" |
| 258 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 259 | android:theme="@style/BackgroundOnlyTheme"> |
Chiao Cheng | 8378c57 | 2012-12-03 17:17:52 -0800 | [diff] [blame] | 260 | </activity> |
| 261 | |
| 262 | <activity android:name="com.android.contacts.common.vcard.CancelActivity" |
| 263 | android:theme="@style/BackgroundOnlyTheme"/> |
| 264 | |
| 265 | <activity android:name="com.android.contacts.common.vcard.SelectAccountActivity" |
| 266 | android:theme="@style/BackgroundOnlyTheme"/> |
| 267 | |
| 268 | <activity android:name="com.android.contacts.common.vcard.ExportVCardActivity" |
| 269 | android:theme="@style/BackgroundOnlyTheme"/> |
| 270 | |
Wenyi Wang | 4cae675 | 2016-02-18 20:39:00 -0800 | [diff] [blame] | 271 | <activity android:name="com.android.contacts.common.vcard.ShareVCardActivity" |
| 272 | android:theme="@style/BackgroundOnlyTheme" /> |
| 273 | |
Chiao Cheng | 8378c57 | 2012-12-03 17:17:52 -0800 | [diff] [blame] | 274 | <service |
| 275 | android:name="com.android.contacts.common.vcard.VCardService" |
| 276 | android:exported="false"/> |
| 277 | <!-- end vCard related --> |
| 278 | |
Jay Shrauner | 6e826d7 | 2015-11-17 14:41:58 -0800 | [diff] [blame] | 279 | <receiver android:name=".calllog.CallLogReceiver"> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 280 | <intent-filter> |
| 281 | <action android:name="android.intent.action.NEW_VOICEMAIL" /> |
| 282 | <data |
| 283 | android:scheme="content" |
| 284 | android:host="com.android.voicemail" |
| 285 | android:mimeType="vnd.android.cursor.item/voicemail" |
| 286 | /> |
| 287 | </intent-filter> |
| 288 | <intent-filter android:priority="100"> |
| 289 | <action android:name="android.intent.action.BOOT_COMPLETED"/> |
| 290 | </intent-filter> |
| 291 | </receiver> |
| 292 | |
Yorke Lee | 1197d33 | 2013-08-14 08:55:53 -0700 | [diff] [blame] | 293 | <receiver android:name=".interactions.UndemoteOutgoingCallReceiver"> |
| 294 | <intent-filter> |
| 295 | <action android:name="android.intent.action.NEW_OUTGOING_CALL" /> |
| 296 | </intent-filter> |
| 297 | </receiver> |
| 298 | |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 299 | <service |
| 300 | android:name=".calllog.CallLogNotificationsService" |
Jeff Sharkey | 23a6076 | 2016-03-17 11:01:30 -0600 | [diff] [blame] | 301 | android:directBootAware="true" |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 302 | android:exported="false" |
| 303 | /> |
Yorke Lee | 81e0da4 | 2013-01-30 14:56:19 -0800 | [diff] [blame] | 304 | |
Brandon Maxwell | 3cb83e0 | 2016-03-04 17:33:59 -0800 | [diff] [blame] | 305 | <receiver android:name=".calllog.MissedCallNotificationReceiver" |
Jeff Sharkey | 23a6076 | 2016-03-17 11:01:30 -0600 | [diff] [blame] | 306 | android:directBootAware="true"> |
Nancy Chen | cc42b59 | 2016-01-26 14:38:57 -0800 | [diff] [blame] | 307 | <intent-filter> |
| 308 | <action android:name="android.telecom.action.SHOW_MISSED_CALLS_NOTIFICATION" /> |
| 309 | </intent-filter> |
| 310 | </receiver> |
| 311 | |
Yorke Lee | 81e0da4 | 2013-01-30 14:56:19 -0800 | [diff] [blame] | 312 | <!-- Service to update a contact --> |
| 313 | <service |
| 314 | android:name=".contact.ContactUpdateService" |
| 315 | android:exported="false" /> |
Santos Cordon | c286ae2 | 2013-09-03 15:58:07 -0700 | [diff] [blame] | 316 | |
Yorke Lee | 294dadd | 2014-06-13 14:54:40 -0700 | [diff] [blame] | 317 | <!-- Broadcast receiver that passively listens to location updates --> |
| 318 | <receiver android:name="com.android.contacts.common.location.CountryDetector$LocationChangedReceiver"/> |
| 319 | |
| 320 | <!-- IntentService to update the user's current country --> |
| 321 | <service android:name="com.android.contacts.common.location.UpdateCountryService" |
| 322 | android:exported="false"/> |
| 323 | |
Santos Cordon | c286ae2 | 2013-09-03 15:58:07 -0700 | [diff] [blame] | 324 | <!-- Main in-call UI activity. This is never launched directly |
| 325 | from outside the phone app; instead, it's either launched by |
| 326 | the OutgoingCallBroadcaster (for outgoing calls), or as the |
| 327 | fullScreenIntent of a notification (for incoming calls.) --> |
| 328 | <activity android:name="com.android.incallui.InCallActivity" |
| 329 | android:theme="@style/Theme.InCallScreen" |
Sandeep Kunta | 5baddd1 | 2016-06-14 10:53:42 +0530 | [diff] [blame] | 330 | android:label="" |
Santos Cordon | c286ae2 | 2013-09-03 15:58:07 -0700 | [diff] [blame] | 331 | android:excludeFromRecents="true" |
| 332 | android:launchMode="singleInstance" |
Andalam Parthasarathi | 5bbed32 | 2016-09-15 18:13:01 +0530 | [diff] [blame] | 333 | android:configChanges="smallestScreenSize|screenLayout|keyboardHidden" |
Santos Cordon | c286ae2 | 2013-09-03 15:58:07 -0700 | [diff] [blame] | 334 | android:exported="false" |
Brandon Maxwell | 6773df0 | 2016-01-14 15:31:42 -0800 | [diff] [blame] | 335 | android:screenOrientation="nosensor" |
Jeff Sharkey | 23a6076 | 2016-03-17 11:01:30 -0600 | [diff] [blame] | 336 | android:directBootAware="true" |
Qi Wang | 40de598 | 2016-02-23 12:57:04 -0800 | [diff] [blame] | 337 | android:resizeableActivity="true"> |
Santos Cordon | c286ae2 | 2013-09-03 15:58:07 -0700 | [diff] [blame] | 338 | </activity> |
| 339 | |
Santos Cordon | 77cecf2 | 2014-06-26 14:50:10 -0700 | [diff] [blame] | 340 | <service android:name="com.android.incallui.InCallServiceImpl" |
Brandon Maxwell | 6773df0 | 2016-01-14 15:31:42 -0800 | [diff] [blame] | 341 | android:permission="android.permission.BIND_INCALL_SERVICE" |
Jeff Sharkey | 23a6076 | 2016-03-17 11:01:30 -0600 | [diff] [blame] | 342 | android:directBootAware="true" > |
Santos Cordon | e911779 | 2015-06-23 15:14:03 -0700 | [diff] [blame] | 343 | <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] | 344 | <meta-data android:name="android.telecom.IN_CALL_SERVICE_RINGING" |
Brandon Maxwell | 3c048b9 | 2016-02-25 18:24:57 -0800 | [diff] [blame] | 345 | android:value="false"/> |
Tyler Gunn | 318a06e | 2016-06-09 12:50:15 -0700 | [diff] [blame] | 346 | <meta-data android:name="android.telecom.INCLUDE_EXTERNAL_CALLS" |
| 347 | android:value="true"/> |
Santos Cordon | 77cecf2 | 2014-06-26 14:50:10 -0700 | [diff] [blame] | 348 | <intent-filter> |
Tyler Gunn | 9dc924c | 2014-09-12 09:33:50 -0700 | [diff] [blame] | 349 | <action android:name="android.telecom.InCallService"/> |
Santos Cordon | 77cecf2 | 2014-06-26 14:50:10 -0700 | [diff] [blame] | 350 | </intent-filter> |
| 351 | </service> |
Anne Rong | 6fcdcc1 | 2015-08-10 17:45:55 -0700 | [diff] [blame] | 352 | |
Brandon Maxwell | 3cb83e0 | 2016-03-04 17:33:59 -0800 | [diff] [blame] | 353 | <!-- BroadcastReceiver for receiving Intents from Notification mechanism. --> |
| 354 | <receiver android:name="com.android.incallui.NotificationBroadcastReceiver" |
Jeff Sharkey | 23a6076 | 2016-03-17 11:01:30 -0600 | [diff] [blame] | 355 | android:directBootAware="true" |
Brandon Maxwell | 3cb83e0 | 2016-03-04 17:33:59 -0800 | [diff] [blame] | 356 | android:exported="false" /> |
| 357 | |
Anne Rong | 6fcdcc1 | 2015-08-10 17:45:55 -0700 | [diff] [blame] | 358 | <provider |
| 359 | android:name=".database.FilteredNumberProvider" |
Anne Rong | 7e488f5 | 2015-08-19 18:32:08 -0700 | [diff] [blame] | 360 | android:authorities="com.android.dialer.database.filterednumberprovider" |
Anne Rong | 6fcdcc1 | 2015-08-10 17:45:55 -0700 | [diff] [blame] | 361 | android:exported="false" |
| 362 | android:multiprocess="false" |
| 363 | /> |
Wenyi Wang | 4cae675 | 2016-02-18 20:39:00 -0800 | [diff] [blame] | 364 | |
| 365 | <provider |
| 366 | android:name="android.support.v4.content.FileProvider" |
| 367 | android:authorities="@string/contacts_file_provider_authority" |
| 368 | android:grantUriPermissions="true" |
| 369 | android:exported="false"> |
| 370 | <meta-data |
| 371 | android:name="android.support.FILE_PROVIDER_PATHS" |
| 372 | android:resource="@xml/file_paths" /> |
| 373 | </provider> |
Sarmad Hashmi | 450a605 | 2016-02-09 18:54:26 -0800 | [diff] [blame] | 374 | |
| 375 | <provider |
| 376 | android:name=".database.VoicemailArchiveProvider" |
| 377 | android:authorities="com.android.dialer.database.voicemailarchiveprovider" |
| 378 | android:exported="false" |
| 379 | android:multiprocess="false" |
| 380 | /> |
Zhu Youhua | 15e0387 | 2016-06-06 18:40:07 +0800 | [diff] [blame] | 381 | |
| 382 | <activity android:name=".SpeedDialListActivity" |
| 383 | android:theme="@style/SpeedDialtactsTheme" |
| 384 | android:label="@string/speed_dial_settings" > |
| 385 | <intent-filter> |
| 386 | <action android:name="android.intent.action.MAIN"/> |
| 387 | </intent-filter> |
| 388 | </activity> |
Chiao Cheng | 94b10b5 | 2012-08-17 16:59:12 -0700 | [diff] [blame] | 389 | </application> |
| 390 | </manifest> |