blob: b87e31f2641debce53695740dde7c63bc3271e74 [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" />
Fang Yunonged1f20a2015-11-24 16:39:40 +080045 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070046 <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 Chen21b49b12016-06-23 17:54:06 +080051 <uses-permission android:name="com.qualcomm.permission.USE_PHONE_SERVICE" />
52 <uses-permission android:name="android.permission.CAPTURE_AUDIO_OUTPUT" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070053 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Tyler Gunn54268512014-08-18 16:24:05 -070054 <uses-permission android:name="android.permission.CONTROL_INCALL_EXPERIENCE" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070055 <uses-permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL" />
Yorke Lee2cb39a62014-07-18 16:36:21 -070056 <uses-permission android:name="com.android.voicemail.permission.WRITE_VOICEMAIL" />
57 <uses-permission android:name="com.android.voicemail.permission.READ_VOICEMAIL" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070058 <uses-permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK" />
59 <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
Chiao Cheng94b10b52012-08-17 16:59:12 -070060 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Evan Charltonb6b31722014-09-15 09:25:39 -070061 <uses-permission android:name="android.permission.BROADCAST_STICKY" />
Andrew Leed04f11f2015-02-12 12:16:07 -080062 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
Fang Yunonged1f20a2015-11-24 16:39:40 +080063 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Fang Yunongda0ed542016-10-17 15:37:02 +080064 <uses-permission android:name="android.permission.CONNECTIVITY_INTERNAL" />
65 <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
Christine Chen28eb2f12013-10-07 11:44:06 -070066 <!-- This tells the activity manager to not delay any of our activity
67 start requests, even if they happen immediately after the user
68 presses home. -->
69 <uses-permission android:name="android.permission.STOP_APP_SWITCHES" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070070
71 <application
Alon Albert05de7012013-08-22 11:26:28 -070072 android:name="DialerApplication"
Chiao Cheng94b10b52012-08-17 16:59:12 -070073 android:label="@string/applicationLabel"
Chiao Cheng437afcc2012-11-09 15:18:21 -080074 android:icon="@mipmap/ic_launcher_phone"
Fabrice Di Meglioc341db02013-04-03 21:11:37 -070075 android:hardwareAccelerated="true"
Christine Chen9c1e0652013-05-23 15:40:19 -070076 android:supportsRtl="true"
Alex Klyubin45c14892015-04-02 10:41:18 -070077 android:backupAgent='com.android.dialer.DialerBackupAgent'
Jeff Sharkey23a60762016-03-17 11:01:30 -060078 android:usesCleartextTraffic="false">
Christine Chen9c1e0652013-05-23 15:40:19 -070079
80 <meta-data android:name="com.google.android.backup.api_key"
81 android:value="AEdPqrEAAAAIBXgtCEKQ6W0PXVnW-ZVia2KmlV2AxsTw3GjAeQ" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070082
Zhu Youhuae47ebf02016-06-02 20:23:21 +080083 <uses-library android:name="com.qualcomm.qti.smartsearch" android:required="false" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070084 <!-- The entrance point for Phone UI.
85 stateAlwaysHidden is set to suppress keyboard show up on
86 dialpad screen. -->
87 <activity android:name=".DialtactsActivity"
Jay Shraunerbf8b4b92014-09-03 15:12:16 -070088 android:label="@string/launcherActivityLabel"
Yorke Leebe10b412014-04-23 19:14:12 -070089 android:theme="@style/DialtactsActivityTheme"
Chiao Cheng94b10b52012-08-17 16:59:12 -070090 android:launchMode="singleTask"
91 android:clearTaskOnLaunch="true"
92 android:icon="@mipmap/ic_launcher_phone"
Nancy Chend4c8d5a2016-01-28 15:12:11 -080093 android:windowSoftInputMode="stateAlwaysHidden|adjustNothing"
94 android:resizeableActivity="true"
Jeff Sharkey23a60762016-03-17 11:01:30 -060095 android:directBootAware="true">
Chiao Cheng94b10b52012-08-17 16:59:12 -070096 <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:mimeType="vnd.android.cursor.item/phone" />
101 <data android:mimeType="vnd.android.cursor.item/person" />
102 </intent-filter>
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:scheme="voicemail" />
108 </intent-filter>
109 <intent-filter>
110 <action android:name="android.intent.action.DIAL" />
111 <category android:name="android.intent.category.DEFAULT" />
112 </intent-filter>
113 <intent-filter>
114 <action android:name="android.intent.action.MAIN" />
115 <category android:name="android.intent.category.DEFAULT" />
116 <category android:name="android.intent.category.LAUNCHER" />
117 <category android:name="android.intent.category.BROWSABLE" />
118 </intent-filter>
119 <intent-filter>
120 <action android:name="android.intent.action.VIEW" />
121 <action android:name="android.intent.action.DIAL" />
122 <category android:name="android.intent.category.DEFAULT" />
123 <category android:name="android.intent.category.BROWSABLE" />
124 <data android:scheme="tel" />
125 </intent-filter>
126 <intent-filter>
Nancy Chen019713e2015-07-06 18:25:24 -0700127 <action android:name="android.intent.action.VIEW" />
128 <category android:name="android.intent.category.DEFAULT" />
129 <category android:name="android.intent.category.BROWSABLE" />
130 <data android:mimeType="vnd.android.cursor.dir/calls" />
131 </intent-filter>
132 <intent-filter>
Chiao Cheng94b10b52012-08-17 16:59:12 -0700133 <action android:name="android.intent.action.CALL_BUTTON" />
134 <category android:name="android.intent.category.DEFAULT" />
135 <category android:name="android.intent.category.BROWSABLE" />
136 </intent-filter>
137 <!-- This was never intended to be public, but is here for backward
138 compatibility. Use Intent.ACTION_DIAL instead. -->
139 <intent-filter>
140 <action android:name="com.android.phone.action.TOUCH_DIALER" />
141 <category android:name="android.intent.category.DEFAULT" />
142 <category android:name="android.intent.category.TAB" />
143 </intent-filter>
Andrew Lee4de59fb2015-08-13 15:20:08 -0700144 <intent-filter android:label="@string/callHistoryIconLabel">
Chiao Cheng94b10b52012-08-17 16:59:12 -0700145 <action android:name="com.android.phone.action.RECENT_CALLS" />
146 <category android:name="android.intent.category.DEFAULT" />
147 <category android:name="android.intent.category.TAB" />
148 </intent-filter>
Jorim Jaggida1da5d2014-07-25 22:13:24 +0200149 <meta-data
150 android:name="com.android.keyguard.layout"
151 android:resource="@layout/keyguard_preview" />
Chiao Cheng94b10b52012-08-17 16:59:12 -0700152 </activity>
153
Yorke Leeaf6f1952014-07-14 19:13:16 -0700154 <activity android:name="com.android.dialer.settings.DialerSettingsActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700155 android:label="@string/dialer_settings_label"
156 android:parentActivityName="com.android.dialer.DialtactsActivity"
157 android:theme="@style/SettingsStyle"
158 android:exported="false">
Yorke Leeaf6f1952014-07-14 19:13:16 -0700159 </activity>
160
Andrew Lee91cd89c2015-10-28 17:47:42 -0700161 <activity android:name="com.android.dialer.filterednumber.BlockedNumbersSettingsActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700162 android:label="@string/manage_blocked_numbers_label"
Anne Ronge78b54c2015-09-28 11:18:42 -0700163 android:parentActivityName="com.android.dialer.settings.DialerSettingsActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700164 android:theme="@style/ManageBlockedNumbersStyle"
165 android:exported="false">
Anne Ronge78b54c2015-09-28 11:18:42 -0700166 </activity>
167
Sarmad Hashmi3694b112016-02-17 17:39:36 -0800168 <activity android:name="com.android.dialer.voicemail.VoicemailArchiveActivity"
169 android:label="@string/voicemail_archive_activity_title"
170 android:theme="@style/DialtactsThemeWithoutActionBarOverlay">
171 </activity>
172
Yorke Leec3766332013-07-31 11:13:16 -0700173 <activity android:name="com.android.dialer.calllog.CallLogActivity"
Li Weiadecbba2016-08-31 11:42:07 +0800174 android:configChanges="orientation|screenSize|keyboardHidden"
Yorke Leec3766332013-07-31 11:13:16 -0700175 android:label="@string/call_log_activity_title"
Yorke Lee86e21f72014-04-02 16:49:38 -0700176 android:theme="@style/DialtactsThemeWithoutActionBarOverlay"
Yorke Leec3766332013-07-31 11:13:16 -0700177 android:icon="@mipmap/ic_launcher_phone">
Yorke Leedfb2eee2013-06-26 18:24:32 -0700178 </activity>
179
Chiao Cheng94b10b52012-08-17 16:59:12 -0700180 <activity android:name="com.android.dialer.CallDetailActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700181 android:label="@string/callDetailTitle"
182 android:theme="@style/CallDetailActivityTheme"
Mayukh Chatterjee716ec902016-06-29 16:55:37 +0530183 android:icon="@mipmap/ic_launcher_phone"
184 android:parentActivityName="com.android.dialer.calllog.CallLogActivity">
Chiao Cheng94b10b52012-08-17 16:59:12 -0700185 <intent-filter>
186 <action android:name="android.intent.action.VIEW"/>
187 <category android:name="android.intent.category.DEFAULT"/>
188 <data android:mimeType="vnd.android.cursor.item/calls"/>
189 </intent-filter>
190 </activity>
191
192 <activity android:name="com.android.contacts.common.test.FragmentTestActivity">
193 <intent-filter>
194 <category android:name="android.intent.category.TEST"/>
195 </intent-filter>
196 </activity>
197
Tyler Gunn476bd262015-08-10 10:03:37 -0700198 <activity android:name="com.android.contacts.common.dialog.CallSubjectDialog"
199 android:theme="@style/Theme.CallSubjectDialogTheme"
200 android:windowSoftInputMode="stateVisible|adjustResize">
Tyler Gunnc72f4192015-08-05 14:34:28 -0700201 <intent-filter>
202 <action android:name="android.intent.action.VIEW"/>
203 </intent-filter>
204 </activity>
205
Chiao Cheng94b10b52012-08-17 16:59:12 -0700206 <!-- Backwards compatibility: "Phone" from Gingerbread and earlier -->
207 <activity-alias android:name="DialtactsActivity"
208 android:targetActivity=".DialtactsActivity"
209 android:exported="true"
210 />
211
212 <!-- Backwards compatibility: "Call log" from Gingerbread and earlier -->
213 <activity-alias android:name="RecentCallsListActivity"
214 android:targetActivity=".DialtactsActivity"
215 android:exported="true"
216 />
217
218 <!-- Backwards compatibility: "Call log" from ICS -->
219 <activity-alias android:name=".activities.CallLogActivity"
220 android:targetActivity=".DialtactsActivity"
221 android:exported="true"
222 />
223
Chiao Chenge1d64772012-10-29 18:32:25 -0700224 <!-- Used to filter contacts list by account -->
225 <activity
Chiao Cheng82d544d2012-11-30 13:32:24 -0800226 android:name="com.android.contacts.common.list.AccountFilterActivity"
Chiao Chenge1d64772012-10-29 18:32:25 -0700227 android:label="@string/activity_title_contacts_filter"
228 android:theme="@style/ContactListFilterTheme"/>
229
230 <!-- Used to select display and sync groups -->
231 <activity
Chiao Cheng82d544d2012-11-30 13:32:24 -0800232 android:name="com.android.contacts.common.list.CustomContactListFilterActivity"
Chiao Chenge1d64772012-10-29 18:32:25 -0700233 android:label="@string/custom_list_filter"
234 android:theme="@style/ContactListFilterTheme"/>
235
Brian Attwellbd53eb42015-05-11 17:18:07 -0700236 <activity
237 android:name="com.android.contacts.common.activity.RequestImportVCardPermissionsActivity"
238 android:label="@string/launcherActivityLabel"
239 android:theme="@style/BackgroundOnlyTheme"
240 android:exported="false"/>
241
Fang Yunong72e8ce82016-08-08 19:59:47 +0800242 <activity android:name=".VideoCallWelcomeActivity"
243 android:theme="@*android:style/Theme.DeviceDefault.Light.Dialog.Alert"
244 android:finishOnCloseSystemDialogs="true"
245 android:excludeFromRecents="true"
246 android:exported="false" />
247
Chiao Cheng8378c572012-12-03 17:17:52 -0800248 <!-- vCard related -->
249 <activity android:name="com.android.contacts.common.vcard.ImportVCardActivity"
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.NfcImportVCardActivity"
255 android:configChanges="orientation|screenSize|keyboardHidden"
256 android:theme="@style/BackgroundOnlyTheme">
Chiao Cheng8378c572012-12-03 17:17:52 -0800257 </activity>
258
259 <activity android:name="com.android.contacts.common.vcard.CancelActivity"
260 android:theme="@style/BackgroundOnlyTheme"/>
261
262 <activity android:name="com.android.contacts.common.vcard.SelectAccountActivity"
263 android:theme="@style/BackgroundOnlyTheme"/>
264
265 <activity android:name="com.android.contacts.common.vcard.ExportVCardActivity"
266 android:theme="@style/BackgroundOnlyTheme"/>
267
Wenyi Wang4cae6752016-02-18 20:39:00 -0800268 <activity android:name="com.android.contacts.common.vcard.ShareVCardActivity"
269 android:theme="@style/BackgroundOnlyTheme" />
270
Chiao Cheng8378c572012-12-03 17:17:52 -0800271 <service
272 android:name="com.android.contacts.common.vcard.VCardService"
273 android:exported="false"/>
274 <!-- end vCard related -->
275
Jay Shrauner6e826d72015-11-17 14:41:58 -0800276 <receiver android:name=".calllog.CallLogReceiver">
Chiao Cheng94b10b52012-08-17 16:59:12 -0700277 <intent-filter>
278 <action android:name="android.intent.action.NEW_VOICEMAIL" />
279 <data
280 android:scheme="content"
281 android:host="com.android.voicemail"
282 android:mimeType="vnd.android.cursor.item/voicemail"
283 />
284 </intent-filter>
285 <intent-filter android:priority="100">
286 <action android:name="android.intent.action.BOOT_COMPLETED"/>
287 </intent-filter>
288 </receiver>
289
Yorke Lee1197d332013-08-14 08:55:53 -0700290 <receiver android:name=".interactions.UndemoteOutgoingCallReceiver">
291 <intent-filter>
292 <action android:name="android.intent.action.NEW_OUTGOING_CALL" />
293 </intent-filter>
294 </receiver>
295
Chiao Cheng94b10b52012-08-17 16:59:12 -0700296 <service
297 android:name=".calllog.CallLogNotificationsService"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600298 android:directBootAware="true"
Chiao Cheng94b10b52012-08-17 16:59:12 -0700299 android:exported="false"
300 />
Yorke Lee81e0da42013-01-30 14:56:19 -0800301
Brandon Maxwell3cb83e02016-03-04 17:33:59 -0800302 <receiver android:name=".calllog.MissedCallNotificationReceiver"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600303 android:directBootAware="true">
Nancy Chencc42b592016-01-26 14:38:57 -0800304 <intent-filter>
305 <action android:name="android.telecom.action.SHOW_MISSED_CALLS_NOTIFICATION" />
306 </intent-filter>
307 </receiver>
308
Yorke Lee81e0da42013-01-30 14:56:19 -0800309 <!-- Service to update a contact -->
310 <service
311 android:name=".contact.ContactUpdateService"
312 android:exported="false" />
Santos Cordonc286ae22013-09-03 15:58:07 -0700313
Yorke Lee294dadd2014-06-13 14:54:40 -0700314 <!-- Broadcast receiver that passively listens to location updates -->
315 <receiver android:name="com.android.contacts.common.location.CountryDetector$LocationChangedReceiver"/>
316
317 <!-- IntentService to update the user's current country -->
318 <service android:name="com.android.contacts.common.location.UpdateCountryService"
319 android:exported="false"/>
320
Santos Cordonc286ae22013-09-03 15:58:07 -0700321 <!-- Main in-call UI activity. This is never launched directly
322 from outside the phone app; instead, it's either launched by
323 the OutgoingCallBroadcaster (for outgoing calls), or as the
324 fullScreenIntent of a notification (for incoming calls.) -->
325 <activity android:name="com.android.incallui.InCallActivity"
326 android:theme="@style/Theme.InCallScreen"
Sandeep Kunta5baddd12016-06-14 10:53:42 +0530327 android:label=""
Santos Cordonc286ae22013-09-03 15:58:07 -0700328 android:excludeFromRecents="true"
329 android:launchMode="singleInstance"
Andalam Parthasarathi5bbed322016-09-15 18:13:01 +0530330 android:configChanges="smallestScreenSize|screenLayout|keyboardHidden"
Santos Cordonc286ae22013-09-03 15:58:07 -0700331 android:exported="false"
Brandon Maxwell6773df02016-01-14 15:31:42 -0800332 android:screenOrientation="nosensor"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600333 android:directBootAware="true"
Qi Wang40de5982016-02-23 12:57:04 -0800334 android:resizeableActivity="true">
Santos Cordonc286ae22013-09-03 15:58:07 -0700335 </activity>
336
Santos Cordon77cecf22014-06-26 14:50:10 -0700337 <service android:name="com.android.incallui.InCallServiceImpl"
Brandon Maxwell6773df02016-01-14 15:31:42 -0800338 android:permission="android.permission.BIND_INCALL_SERVICE"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600339 android:directBootAware="true" >
Santos Cordone9117792015-06-23 15:14:03 -0700340 <meta-data android:name="android.telecom.IN_CALL_SERVICE_UI" android:value="true" />
Brandon Maxwell88bbc3e2016-01-27 18:11:47 -0800341 <meta-data android:name="android.telecom.IN_CALL_SERVICE_RINGING"
Brandon Maxwell3c048b92016-02-25 18:24:57 -0800342 android:value="false"/>
Santos Cordon77cecf22014-06-26 14:50:10 -0700343 <intent-filter>
Tyler Gunn9dc924c2014-09-12 09:33:50 -0700344 <action android:name="android.telecom.InCallService"/>
Santos Cordon77cecf22014-06-26 14:50:10 -0700345 </intent-filter>
346 </service>
Anne Rong6fcdcc12015-08-10 17:45:55 -0700347
Brandon Maxwell3cb83e02016-03-04 17:33:59 -0800348 <!-- BroadcastReceiver for receiving Intents from Notification mechanism. -->
349 <receiver android:name="com.android.incallui.NotificationBroadcastReceiver"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600350 android:directBootAware="true"
Brandon Maxwell3cb83e02016-03-04 17:33:59 -0800351 android:exported="false" />
352
Anne Rong6fcdcc12015-08-10 17:45:55 -0700353 <provider
354 android:name=".database.FilteredNumberProvider"
Anne Rong7e488f52015-08-19 18:32:08 -0700355 android:authorities="com.android.dialer.database.filterednumberprovider"
Anne Rong6fcdcc12015-08-10 17:45:55 -0700356 android:exported="false"
357 android:multiprocess="false"
358 />
Wenyi Wang4cae6752016-02-18 20:39:00 -0800359
360 <provider
361 android:name="android.support.v4.content.FileProvider"
362 android:authorities="@string/contacts_file_provider_authority"
363 android:grantUriPermissions="true"
364 android:exported="false">
365 <meta-data
366 android:name="android.support.FILE_PROVIDER_PATHS"
367 android:resource="@xml/file_paths" />
368 </provider>
Sarmad Hashmi450a6052016-02-09 18:54:26 -0800369
370 <provider
371 android:name=".database.VoicemailArchiveProvider"
372 android:authorities="com.android.dialer.database.voicemailarchiveprovider"
373 android:exported="false"
374 android:multiprocess="false"
375 />
Zhu Youhua15e03872016-06-06 18:40:07 +0800376
377 <activity android:name=".SpeedDialListActivity"
378 android:theme="@style/SpeedDialtactsTheme"
379 android:label="@string/speed_dial_settings" >
380 <intent-filter>
381 <action android:name="android.intent.action.MAIN"/>
382 </intent-filter>
383 </activity>
Chiao Cheng94b10b52012-08-17 16:59:12 -0700384 </application>
385</manifest>