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