blob: 283a836322b17ef718b59087d76c4dd19516dd11 [file] [log] [blame]
Chiao Cheng94b10b52012-08-17 16:59:12 -07001<?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 Shrauner57ccf012014-03-21 14:12:36 -070018 package="com.android.dialer"
Anthony Leef88d4702015-08-12 14:35:25 -070019 coreApp="true"
Brandon Maxwellcb53f982016-03-15 18:45:06 -070020 android:versionCode="30000"
21 android:versionName="3.00.00">
Chiao Cheng94b10b52012-08-17 16:59:12 -070022
Yorke Leee772cc32015-06-25 10:19:09 -070023 <uses-sdk
Jay Shraunerf61a9a82015-07-14 09:24:06 -070024 android:minSdkVersion="23"
25 android:targetSdkVersion="23" />
Yorke Leee772cc32015-06-25 10:19:09 -070026
Yorke Lee72d59612014-07-18 09:08:51 -070027 <uses-permission android:name="android.permission.CALL_PHONE" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070028 <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 Lee7d661342013-11-07 12:11:13 -080032 <uses-permission android:name="android.permission.READ_PROFILE" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070033 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
34 <uses-permission android:name="android.permission.GET_ACCOUNTS" />
Ta-wei Yen6d8acb22016-03-07 14:20:57 -080035 <uses-permission android:name="android.permission.GET_ACCOUNTS_PRIVILEGED"/>
Chiao Cheng94b10b52012-08-17 16:59:12 -070036 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
37 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070038 <uses-permission android:name="android.permission.INTERNET" />
Yorke Lee1197d332013-08-14 08:55:53 -070039 <uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"/>
Chiao Cheng94b10b52012-08-17 16:59:12 -070040 <uses-permission android:name="android.permission.NFC" />
41 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
Shammi Khattard8c460b2015-12-16 12:41:16 -080042 <uses-permission android:name="android.permission.READ_PRIVILEGED_PHONE_STATE" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070043 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
44 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070045 <uses-permission android:name="android.permission.WAKE_LOCK" />
46 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
47 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
48 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
49 <uses-permission android:name="android.permission.VIBRATE" />
Qiang Chen21b49b12016-06-23 17:54:06 +080050 <uses-permission android:name="com.qualcomm.permission.USE_PHONE_SERVICE" />
51 <uses-permission android:name="android.permission.CAPTURE_AUDIO_OUTPUT" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070052 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Tyler Gunn54268512014-08-18 16:24:05 -070053 <uses-permission android:name="android.permission.CONTROL_INCALL_EXPERIENCE" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070054 <uses-permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL" />
Yorke Lee2cb39a62014-07-18 16:36:21 -070055 <uses-permission android:name="com.android.voicemail.permission.WRITE_VOICEMAIL" />
56 <uses-permission android:name="com.android.voicemail.permission.READ_VOICEMAIL" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070057 <uses-permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK" />
58 <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
Chiao Cheng94b10b52012-08-17 16:59:12 -070059 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Evan Charltonb6b31722014-09-15 09:25:39 -070060 <uses-permission android:name="android.permission.BROADCAST_STICKY" />
Andrew Leed04f11f2015-02-12 12:16:07 -080061 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
Christine Chen28eb2f12013-10-07 11:44:06 -070062 <!-- This tells the activity manager to not delay any of our activity
63 start requests, even if they happen immediately after the user
64 presses home. -->
65 <uses-permission android:name="android.permission.STOP_APP_SWITCHES" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070066
67 <application
Alon Albert05de7012013-08-22 11:26:28 -070068 android:name="DialerApplication"
Chiao Cheng94b10b52012-08-17 16:59:12 -070069 android:label="@string/applicationLabel"
Chiao Cheng437afcc2012-11-09 15:18:21 -080070 android:icon="@mipmap/ic_launcher_phone"
Fabrice Di Meglioc341db02013-04-03 21:11:37 -070071 android:hardwareAccelerated="true"
Christine Chen9c1e0652013-05-23 15:40:19 -070072 android:supportsRtl="true"
Alex Klyubin45c14892015-04-02 10:41:18 -070073 android:backupAgent='com.android.dialer.DialerBackupAgent'
Jeff Sharkey23a60762016-03-17 11:01:30 -060074 android:usesCleartextTraffic="false">
Christine Chen9c1e0652013-05-23 15:40:19 -070075
76 <meta-data android:name="com.google.android.backup.api_key"
77 android:value="AEdPqrEAAAAIBXgtCEKQ6W0PXVnW-ZVia2KmlV2AxsTw3GjAeQ" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070078
Zhu Youhuae47ebf02016-06-02 20:23:21 +080079 <uses-library android:name="com.qualcomm.qti.smartsearch" android:required="false" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070080 <!-- The entrance point for Phone UI.
81 stateAlwaysHidden is set to suppress keyboard show up on
82 dialpad screen. -->
83 <activity android:name=".DialtactsActivity"
Jay Shraunerbf8b4b92014-09-03 15:12:16 -070084 android:label="@string/launcherActivityLabel"
Yorke Leebe10b412014-04-23 19:14:12 -070085 android:theme="@style/DialtactsActivityTheme"
Chiao Cheng94b10b52012-08-17 16:59:12 -070086 android:launchMode="singleTask"
87 android:clearTaskOnLaunch="true"
88 android:icon="@mipmap/ic_launcher_phone"
Nancy Chend4c8d5a2016-01-28 15:12:11 -080089 android:windowSoftInputMode="stateAlwaysHidden|adjustNothing"
90 android:resizeableActivity="true"
Jeff Sharkey23a60762016-03-17 11:01:30 -060091 android:directBootAware="true">
Chiao Cheng94b10b52012-08-17 16:59:12 -070092 <intent-filter>
93 <action android:name="android.intent.action.DIAL" />
94 <category android:name="android.intent.category.DEFAULT" />
95 <category android:name="android.intent.category.BROWSABLE" />
96 <data android:mimeType="vnd.android.cursor.item/phone" />
97 <data android:mimeType="vnd.android.cursor.item/person" />
98 </intent-filter>
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:scheme="voicemail" />
104 </intent-filter>
105 <intent-filter>
106 <action android:name="android.intent.action.DIAL" />
107 <category android:name="android.intent.category.DEFAULT" />
108 </intent-filter>
109 <intent-filter>
110 <action android:name="android.intent.action.MAIN" />
111 <category android:name="android.intent.category.DEFAULT" />
112 <category android:name="android.intent.category.LAUNCHER" />
113 <category android:name="android.intent.category.BROWSABLE" />
114 </intent-filter>
115 <intent-filter>
116 <action android:name="android.intent.action.VIEW" />
117 <action android:name="android.intent.action.DIAL" />
118 <category android:name="android.intent.category.DEFAULT" />
119 <category android:name="android.intent.category.BROWSABLE" />
120 <data android:scheme="tel" />
121 </intent-filter>
122 <intent-filter>
Nancy Chen019713e2015-07-06 18:25:24 -0700123 <action android:name="android.intent.action.VIEW" />
124 <category android:name="android.intent.category.DEFAULT" />
125 <category android:name="android.intent.category.BROWSABLE" />
126 <data android:mimeType="vnd.android.cursor.dir/calls" />
127 </intent-filter>
128 <intent-filter>
Chiao Cheng94b10b52012-08-17 16:59:12 -0700129 <action android:name="android.intent.action.CALL_BUTTON" />
130 <category android:name="android.intent.category.DEFAULT" />
131 <category android:name="android.intent.category.BROWSABLE" />
132 </intent-filter>
133 <!-- This was never intended to be public, but is here for backward
134 compatibility. Use Intent.ACTION_DIAL instead. -->
135 <intent-filter>
136 <action android:name="com.android.phone.action.TOUCH_DIALER" />
137 <category android:name="android.intent.category.DEFAULT" />
138 <category android:name="android.intent.category.TAB" />
139 </intent-filter>
Andrew Lee4de59fb2015-08-13 15:20:08 -0700140 <intent-filter android:label="@string/callHistoryIconLabel">
Chiao Cheng94b10b52012-08-17 16:59:12 -0700141 <action android:name="com.android.phone.action.RECENT_CALLS" />
142 <category android:name="android.intent.category.DEFAULT" />
143 <category android:name="android.intent.category.TAB" />
144 </intent-filter>
Jorim Jaggida1da5d2014-07-25 22:13:24 +0200145 <meta-data
146 android:name="com.android.keyguard.layout"
147 android:resource="@layout/keyguard_preview" />
Chiao Cheng94b10b52012-08-17 16:59:12 -0700148 </activity>
149
Yorke Leeaf6f1952014-07-14 19:13:16 -0700150 <activity android:name="com.android.dialer.settings.DialerSettingsActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700151 android:label="@string/dialer_settings_label"
152 android:parentActivityName="com.android.dialer.DialtactsActivity"
153 android:theme="@style/SettingsStyle"
154 android:exported="false">
Yorke Leeaf6f1952014-07-14 19:13:16 -0700155 </activity>
156
Andrew Lee91cd89c2015-10-28 17:47:42 -0700157 <activity android:name="com.android.dialer.filterednumber.BlockedNumbersSettingsActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700158 android:label="@string/manage_blocked_numbers_label"
Anne Ronge78b54c2015-09-28 11:18:42 -0700159 android:parentActivityName="com.android.dialer.settings.DialerSettingsActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700160 android:theme="@style/ManageBlockedNumbersStyle"
161 android:exported="false">
Anne Ronge78b54c2015-09-28 11:18:42 -0700162 </activity>
163
Sarmad Hashmi3694b112016-02-17 17:39:36 -0800164 <activity android:name="com.android.dialer.voicemail.VoicemailArchiveActivity"
165 android:label="@string/voicemail_archive_activity_title"
166 android:theme="@style/DialtactsThemeWithoutActionBarOverlay">
167 </activity>
168
Yorke Leec3766332013-07-31 11:13:16 -0700169 <activity android:name="com.android.dialer.calllog.CallLogActivity"
170 android:label="@string/call_log_activity_title"
Yorke Lee86e21f72014-04-02 16:49:38 -0700171 android:theme="@style/DialtactsThemeWithoutActionBarOverlay"
Yorke Leec3766332013-07-31 11:13:16 -0700172 android:icon="@mipmap/ic_launcher_phone">
Yorke Leedfb2eee2013-06-26 18:24:32 -0700173 </activity>
174
Chiao Cheng94b10b52012-08-17 16:59:12 -0700175 <activity android:name="com.android.dialer.CallDetailActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700176 android:label="@string/callDetailTitle"
177 android:theme="@style/CallDetailActivityTheme"
Mayukh Chatterjee716ec902016-06-29 16:55:37 +0530178 android:icon="@mipmap/ic_launcher_phone"
179 android:parentActivityName="com.android.dialer.calllog.CallLogActivity">
Chiao Cheng94b10b52012-08-17 16:59:12 -0700180 <intent-filter>
181 <action android:name="android.intent.action.VIEW"/>
182 <category android:name="android.intent.category.DEFAULT"/>
183 <data android:mimeType="vnd.android.cursor.item/calls"/>
184 </intent-filter>
185 </activity>
186
187 <activity android:name="com.android.contacts.common.test.FragmentTestActivity">
188 <intent-filter>
189 <category android:name="android.intent.category.TEST"/>
190 </intent-filter>
191 </activity>
192
Tyler Gunn476bd262015-08-10 10:03:37 -0700193 <activity android:name="com.android.contacts.common.dialog.CallSubjectDialog"
194 android:theme="@style/Theme.CallSubjectDialogTheme"
195 android:windowSoftInputMode="stateVisible|adjustResize">
Tyler Gunnc72f4192015-08-05 14:34:28 -0700196 <intent-filter>
197 <action android:name="android.intent.action.VIEW"/>
198 </intent-filter>
199 </activity>
200
Chiao Cheng94b10b52012-08-17 16:59:12 -0700201 <!-- Backwards compatibility: "Phone" from Gingerbread and earlier -->
202 <activity-alias android:name="DialtactsActivity"
203 android:targetActivity=".DialtactsActivity"
204 android:exported="true"
205 />
206
207 <!-- Backwards compatibility: "Call log" from Gingerbread and earlier -->
208 <activity-alias android:name="RecentCallsListActivity"
209 android:targetActivity=".DialtactsActivity"
210 android:exported="true"
211 />
212
213 <!-- Backwards compatibility: "Call log" from ICS -->
214 <activity-alias android:name=".activities.CallLogActivity"
215 android:targetActivity=".DialtactsActivity"
216 android:exported="true"
217 />
218
Chiao Chenge1d64772012-10-29 18:32:25 -0700219 <!-- Used to filter contacts list by account -->
220 <activity
Chiao Cheng82d544d2012-11-30 13:32:24 -0800221 android:name="com.android.contacts.common.list.AccountFilterActivity"
Chiao Chenge1d64772012-10-29 18:32:25 -0700222 android:label="@string/activity_title_contacts_filter"
223 android:theme="@style/ContactListFilterTheme"/>
224
225 <!-- Used to select display and sync groups -->
226 <activity
Chiao Cheng82d544d2012-11-30 13:32:24 -0800227 android:name="com.android.contacts.common.list.CustomContactListFilterActivity"
Chiao Chenge1d64772012-10-29 18:32:25 -0700228 android:label="@string/custom_list_filter"
229 android:theme="@style/ContactListFilterTheme"/>
230
Brian Attwellbd53eb42015-05-11 17:18:07 -0700231 <activity
232 android:name="com.android.contacts.common.activity.RequestImportVCardPermissionsActivity"
233 android:label="@string/launcherActivityLabel"
234 android:theme="@style/BackgroundOnlyTheme"
235 android:exported="false"/>
236
Fang Yunong72e8ce82016-08-08 19:59:47 +0800237 <activity android:name=".VideoCallWelcomeActivity"
238 android:theme="@*android:style/Theme.DeviceDefault.Light.Dialog.Alert"
239 android:finishOnCloseSystemDialogs="true"
240 android:excludeFromRecents="true"
241 android:exported="false" />
242
Chiao Cheng8378c572012-12-03 17:17:52 -0800243 <!-- vCard related -->
244 <activity android:name="com.android.contacts.common.vcard.ImportVCardActivity"
245 android:configChanges="orientation|screenSize|keyboardHidden"
246 android:theme="@style/BackgroundOnlyTheme">
Chiao Cheng8378c572012-12-03 17:17:52 -0800247 </activity>
248
249 <activity android:name="com.android.contacts.common.vcard.NfcImportVCardActivity"
250 android:configChanges="orientation|screenSize|keyboardHidden"
251 android:theme="@style/BackgroundOnlyTheme">
Chiao Cheng8378c572012-12-03 17:17:52 -0800252 </activity>
253
254 <activity android:name="com.android.contacts.common.vcard.CancelActivity"
255 android:theme="@style/BackgroundOnlyTheme"/>
256
257 <activity android:name="com.android.contacts.common.vcard.SelectAccountActivity"
258 android:theme="@style/BackgroundOnlyTheme"/>
259
260 <activity android:name="com.android.contacts.common.vcard.ExportVCardActivity"
261 android:theme="@style/BackgroundOnlyTheme"/>
262
Wenyi Wang4cae6752016-02-18 20:39:00 -0800263 <activity android:name="com.android.contacts.common.vcard.ShareVCardActivity"
264 android:theme="@style/BackgroundOnlyTheme" />
265
Chiao Cheng8378c572012-12-03 17:17:52 -0800266 <service
267 android:name="com.android.contacts.common.vcard.VCardService"
268 android:exported="false"/>
269 <!-- end vCard related -->
270
Jay Shrauner6e826d72015-11-17 14:41:58 -0800271 <receiver android:name=".calllog.CallLogReceiver">
Chiao Cheng94b10b52012-08-17 16:59:12 -0700272 <intent-filter>
273 <action android:name="android.intent.action.NEW_VOICEMAIL" />
274 <data
275 android:scheme="content"
276 android:host="com.android.voicemail"
277 android:mimeType="vnd.android.cursor.item/voicemail"
278 />
279 </intent-filter>
280 <intent-filter android:priority="100">
281 <action android:name="android.intent.action.BOOT_COMPLETED"/>
282 </intent-filter>
283 </receiver>
284
Yorke Lee1197d332013-08-14 08:55:53 -0700285 <receiver android:name=".interactions.UndemoteOutgoingCallReceiver">
286 <intent-filter>
287 <action android:name="android.intent.action.NEW_OUTGOING_CALL" />
288 </intent-filter>
289 </receiver>
290
Chiao Cheng94b10b52012-08-17 16:59:12 -0700291 <service
292 android:name=".calllog.CallLogNotificationsService"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600293 android:directBootAware="true"
Chiao Cheng94b10b52012-08-17 16:59:12 -0700294 android:exported="false"
295 />
Yorke Lee81e0da42013-01-30 14:56:19 -0800296
Brandon Maxwell3cb83e02016-03-04 17:33:59 -0800297 <receiver android:name=".calllog.MissedCallNotificationReceiver"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600298 android:directBootAware="true">
Nancy Chencc42b592016-01-26 14:38:57 -0800299 <intent-filter>
300 <action android:name="android.telecom.action.SHOW_MISSED_CALLS_NOTIFICATION" />
301 </intent-filter>
302 </receiver>
303
Yorke Lee81e0da42013-01-30 14:56:19 -0800304 <!-- Service to update a contact -->
305 <service
306 android:name=".contact.ContactUpdateService"
307 android:exported="false" />
Santos Cordonc286ae22013-09-03 15:58:07 -0700308
Yorke Lee294dadd2014-06-13 14:54:40 -0700309 <!-- Broadcast receiver that passively listens to location updates -->
310 <receiver android:name="com.android.contacts.common.location.CountryDetector$LocationChangedReceiver"/>
311
312 <!-- IntentService to update the user's current country -->
313 <service android:name="com.android.contacts.common.location.UpdateCountryService"
314 android:exported="false"/>
315
Santos Cordonc286ae22013-09-03 15:58:07 -0700316 <!-- Main in-call UI activity. This is never launched directly
317 from outside the phone app; instead, it's either launched by
318 the OutgoingCallBroadcaster (for outgoing calls), or as the
319 fullScreenIntent of a notification (for incoming calls.) -->
320 <activity android:name="com.android.incallui.InCallActivity"
321 android:theme="@style/Theme.InCallScreen"
Sandeep Kunta5baddd12016-06-14 10:53:42 +0530322 android:label=""
Santos Cordonc286ae22013-09-03 15:58:07 -0700323 android:excludeFromRecents="true"
324 android:launchMode="singleInstance"
Qi Wang40de5982016-02-23 12:57:04 -0800325 android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation|keyboardHidden"
Santos Cordonc286ae22013-09-03 15:58:07 -0700326 android:exported="false"
Brandon Maxwell6773df02016-01-14 15:31:42 -0800327 android:screenOrientation="nosensor"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600328 android:directBootAware="true"
Qi Wang40de5982016-02-23 12:57:04 -0800329 android:resizeableActivity="true">
Santos Cordonc286ae22013-09-03 15:58:07 -0700330 </activity>
331
Santos Cordon77cecf22014-06-26 14:50:10 -0700332 <service android:name="com.android.incallui.InCallServiceImpl"
Brandon Maxwell6773df02016-01-14 15:31:42 -0800333 android:permission="android.permission.BIND_INCALL_SERVICE"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600334 android:directBootAware="true" >
Santos Cordone9117792015-06-23 15:14:03 -0700335 <meta-data android:name="android.telecom.IN_CALL_SERVICE_UI" android:value="true" />
Brandon Maxwell88bbc3e2016-01-27 18:11:47 -0800336 <meta-data android:name="android.telecom.IN_CALL_SERVICE_RINGING"
Brandon Maxwell3c048b92016-02-25 18:24:57 -0800337 android:value="false"/>
Santos Cordon77cecf22014-06-26 14:50:10 -0700338 <intent-filter>
Tyler Gunn9dc924c2014-09-12 09:33:50 -0700339 <action android:name="android.telecom.InCallService"/>
Santos Cordon77cecf22014-06-26 14:50:10 -0700340 </intent-filter>
341 </service>
Anne Rong6fcdcc12015-08-10 17:45:55 -0700342
Brandon Maxwell3cb83e02016-03-04 17:33:59 -0800343 <!-- BroadcastReceiver for receiving Intents from Notification mechanism. -->
344 <receiver android:name="com.android.incallui.NotificationBroadcastReceiver"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600345 android:directBootAware="true"
Brandon Maxwell3cb83e02016-03-04 17:33:59 -0800346 android:exported="false" />
347
Anne Rong6fcdcc12015-08-10 17:45:55 -0700348 <provider
349 android:name=".database.FilteredNumberProvider"
Anne Rong7e488f52015-08-19 18:32:08 -0700350 android:authorities="com.android.dialer.database.filterednumberprovider"
Anne Rong6fcdcc12015-08-10 17:45:55 -0700351 android:exported="false"
352 android:multiprocess="false"
353 />
Wenyi Wang4cae6752016-02-18 20:39:00 -0800354
355 <provider
356 android:name="android.support.v4.content.FileProvider"
357 android:authorities="@string/contacts_file_provider_authority"
358 android:grantUriPermissions="true"
359 android:exported="false">
360 <meta-data
361 android:name="android.support.FILE_PROVIDER_PATHS"
362 android:resource="@xml/file_paths" />
363 </provider>
Sarmad Hashmi450a6052016-02-09 18:54:26 -0800364
365 <provider
366 android:name=".database.VoicemailArchiveProvider"
367 android:authorities="com.android.dialer.database.voicemailarchiveprovider"
368 android:exported="false"
369 android:multiprocess="false"
370 />
Zhu Youhua15e03872016-06-06 18:40:07 +0800371
372 <activity android:name=".SpeedDialListActivity"
373 android:theme="@style/SpeedDialtactsTheme"
374 android:label="@string/speed_dial_settings" >
375 <intent-filter>
376 <action android:name="android.intent.action.MAIN"/>
377 </intent-filter>
378 </activity>
Chiao Cheng94b10b52012-08-17 16:59:12 -0700379 </application>
380</manifest>