blob: 85437329b60466d7daa1d6f6b5dc59ffc1d833a9 [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" />
42 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
43 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070044 <uses-permission android:name="android.permission.WAKE_LOCK" />
45 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
46 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
47 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
48 <uses-permission android:name="android.permission.VIBRATE" />
Qiang Chen21b49b12016-06-23 17:54:06 +080049 <uses-permission android:name="com.qualcomm.permission.USE_PHONE_SERVICE" />
50 <uses-permission android:name="android.permission.CAPTURE_AUDIO_OUTPUT" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070051 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Tyler Gunn54268512014-08-18 16:24:05 -070052 <uses-permission android:name="android.permission.CONTROL_INCALL_EXPERIENCE" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070053 <uses-permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL" />
Yorke Lee2cb39a62014-07-18 16:36:21 -070054 <uses-permission android:name="com.android.voicemail.permission.WRITE_VOICEMAIL" />
55 <uses-permission android:name="com.android.voicemail.permission.READ_VOICEMAIL" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070056 <uses-permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK" />
57 <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
Chiao Cheng94b10b52012-08-17 16:59:12 -070058 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Evan Charltonb6b31722014-09-15 09:25:39 -070059 <uses-permission android:name="android.permission.BROADCAST_STICKY" />
Andrew Leed04f11f2015-02-12 12:16:07 -080060 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
Christine Chen28eb2f12013-10-07 11:44:06 -070061 <!-- This tells the activity manager to not delay any of our activity
62 start requests, even if they happen immediately after the user
63 presses home. -->
64 <uses-permission android:name="android.permission.STOP_APP_SWITCHES" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070065
66 <application
Alon Albert05de7012013-08-22 11:26:28 -070067 android:name="DialerApplication"
Chiao Cheng94b10b52012-08-17 16:59:12 -070068 android:label="@string/applicationLabel"
Chiao Cheng437afcc2012-11-09 15:18:21 -080069 android:icon="@mipmap/ic_launcher_phone"
Fabrice Di Meglioc341db02013-04-03 21:11:37 -070070 android:hardwareAccelerated="true"
Christine Chen9c1e0652013-05-23 15:40:19 -070071 android:supportsRtl="true"
Alex Klyubin45c14892015-04-02 10:41:18 -070072 android:backupAgent='com.android.dialer.DialerBackupAgent'
Jeff Sharkey23a60762016-03-17 11:01:30 -060073 android:usesCleartextTraffic="false">
Christine Chen9c1e0652013-05-23 15:40:19 -070074
75 <meta-data android:name="com.google.android.backup.api_key"
76 android:value="AEdPqrEAAAAIBXgtCEKQ6W0PXVnW-ZVia2KmlV2AxsTw3GjAeQ" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070077
Zhu Youhuae47ebf02016-06-02 20:23:21 +080078 <uses-library android:name="com.qualcomm.qti.smartsearch" android:required="false" />
Chiao Cheng94b10b52012-08-17 16:59:12 -070079 <!-- The entrance point for Phone UI.
80 stateAlwaysHidden is set to suppress keyboard show up on
81 dialpad screen. -->
82 <activity android:name=".DialtactsActivity"
Jay Shraunerbf8b4b92014-09-03 15:12:16 -070083 android:label="@string/launcherActivityLabel"
Yorke Leebe10b412014-04-23 19:14:12 -070084 android:theme="@style/DialtactsActivityTheme"
Chiao Cheng94b10b52012-08-17 16:59:12 -070085 android:launchMode="singleTask"
86 android:clearTaskOnLaunch="true"
87 android:icon="@mipmap/ic_launcher_phone"
Nancy Chend4c8d5a2016-01-28 15:12:11 -080088 android:windowSoftInputMode="stateAlwaysHidden|adjustNothing"
89 android:resizeableActivity="true"
Jeff Sharkey23a60762016-03-17 11:01:30 -060090 android:directBootAware="true">
Chiao Cheng94b10b52012-08-17 16:59:12 -070091 <intent-filter>
92 <action android:name="android.intent.action.DIAL" />
93 <category android:name="android.intent.category.DEFAULT" />
94 <category android:name="android.intent.category.BROWSABLE" />
95 <data android:mimeType="vnd.android.cursor.item/phone" />
96 <data android:mimeType="vnd.android.cursor.item/person" />
97 </intent-filter>
98 <intent-filter>
99 <action android:name="android.intent.action.DIAL" />
100 <category android:name="android.intent.category.DEFAULT" />
101 <category android:name="android.intent.category.BROWSABLE" />
102 <data android:scheme="voicemail" />
103 </intent-filter>
104 <intent-filter>
105 <action android:name="android.intent.action.DIAL" />
106 <category android:name="android.intent.category.DEFAULT" />
107 </intent-filter>
108 <intent-filter>
109 <action android:name="android.intent.action.MAIN" />
110 <category android:name="android.intent.category.DEFAULT" />
111 <category android:name="android.intent.category.LAUNCHER" />
112 <category android:name="android.intent.category.BROWSABLE" />
113 </intent-filter>
114 <intent-filter>
115 <action android:name="android.intent.action.VIEW" />
116 <action android:name="android.intent.action.DIAL" />
117 <category android:name="android.intent.category.DEFAULT" />
118 <category android:name="android.intent.category.BROWSABLE" />
119 <data android:scheme="tel" />
120 </intent-filter>
121 <intent-filter>
Nancy Chen019713e2015-07-06 18:25:24 -0700122 <action android:name="android.intent.action.VIEW" />
123 <category android:name="android.intent.category.DEFAULT" />
124 <category android:name="android.intent.category.BROWSABLE" />
125 <data android:mimeType="vnd.android.cursor.dir/calls" />
126 </intent-filter>
127 <intent-filter>
Chiao Cheng94b10b52012-08-17 16:59:12 -0700128 <action android:name="android.intent.action.CALL_BUTTON" />
129 <category android:name="android.intent.category.DEFAULT" />
130 <category android:name="android.intent.category.BROWSABLE" />
131 </intent-filter>
132 <!-- This was never intended to be public, but is here for backward
133 compatibility. Use Intent.ACTION_DIAL instead. -->
134 <intent-filter>
135 <action android:name="com.android.phone.action.TOUCH_DIALER" />
136 <category android:name="android.intent.category.DEFAULT" />
137 <category android:name="android.intent.category.TAB" />
138 </intent-filter>
Andrew Lee4de59fb2015-08-13 15:20:08 -0700139 <intent-filter android:label="@string/callHistoryIconLabel">
Chiao Cheng94b10b52012-08-17 16:59:12 -0700140 <action android:name="com.android.phone.action.RECENT_CALLS" />
141 <category android:name="android.intent.category.DEFAULT" />
142 <category android:name="android.intent.category.TAB" />
143 </intent-filter>
Jorim Jaggida1da5d2014-07-25 22:13:24 +0200144 <meta-data
145 android:name="com.android.keyguard.layout"
146 android:resource="@layout/keyguard_preview" />
Chiao Cheng94b10b52012-08-17 16:59:12 -0700147 </activity>
148
Yorke Leeaf6f1952014-07-14 19:13:16 -0700149 <activity android:name="com.android.dialer.settings.DialerSettingsActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700150 android:label="@string/dialer_settings_label"
151 android:parentActivityName="com.android.dialer.DialtactsActivity"
152 android:theme="@style/SettingsStyle"
153 android:exported="false">
Yorke Leeaf6f1952014-07-14 19:13:16 -0700154 </activity>
155
Andrew Lee91cd89c2015-10-28 17:47:42 -0700156 <activity android:name="com.android.dialer.filterednumber.BlockedNumbersSettingsActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700157 android:label="@string/manage_blocked_numbers_label"
Anne Ronge78b54c2015-09-28 11:18:42 -0700158 android:parentActivityName="com.android.dialer.settings.DialerSettingsActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700159 android:theme="@style/ManageBlockedNumbersStyle"
160 android:exported="false">
Anne Ronge78b54c2015-09-28 11:18:42 -0700161 </activity>
162
Sarmad Hashmi3694b112016-02-17 17:39:36 -0800163 <activity android:name="com.android.dialer.voicemail.VoicemailArchiveActivity"
164 android:label="@string/voicemail_archive_activity_title"
165 android:theme="@style/DialtactsThemeWithoutActionBarOverlay">
166 </activity>
167
Yorke Leec3766332013-07-31 11:13:16 -0700168 <activity android:name="com.android.dialer.calllog.CallLogActivity"
169 android:label="@string/call_log_activity_title"
Yorke Lee86e21f72014-04-02 16:49:38 -0700170 android:theme="@style/DialtactsThemeWithoutActionBarOverlay"
Yorke Leec3766332013-07-31 11:13:16 -0700171 android:icon="@mipmap/ic_launcher_phone">
Yorke Leedfb2eee2013-06-26 18:24:32 -0700172 </activity>
173
Chiao Cheng94b10b52012-08-17 16:59:12 -0700174 <activity android:name="com.android.dialer.CallDetailActivity"
Andrew Lee3663afe2015-10-04 01:31:28 -0700175 android:label="@string/callDetailTitle"
176 android:theme="@style/CallDetailActivityTheme"
Mayukh Chatterjee716ec902016-06-29 16:55:37 +0530177 android:icon="@mipmap/ic_launcher_phone"
178 android:parentActivityName="com.android.dialer.calllog.CallLogActivity">
Chiao Cheng94b10b52012-08-17 16:59:12 -0700179 <intent-filter>
180 <action android:name="android.intent.action.VIEW"/>
181 <category android:name="android.intent.category.DEFAULT"/>
182 <data android:mimeType="vnd.android.cursor.item/calls"/>
183 </intent-filter>
184 </activity>
185
186 <activity android:name="com.android.contacts.common.test.FragmentTestActivity">
187 <intent-filter>
188 <category android:name="android.intent.category.TEST"/>
189 </intent-filter>
190 </activity>
191
Tyler Gunn476bd262015-08-10 10:03:37 -0700192 <activity android:name="com.android.contacts.common.dialog.CallSubjectDialog"
193 android:theme="@style/Theme.CallSubjectDialogTheme"
194 android:windowSoftInputMode="stateVisible|adjustResize">
Tyler Gunnc72f4192015-08-05 14:34:28 -0700195 <intent-filter>
196 <action android:name="android.intent.action.VIEW"/>
197 </intent-filter>
198 </activity>
199
Chiao Cheng94b10b52012-08-17 16:59:12 -0700200 <!-- Backwards compatibility: "Phone" from Gingerbread and earlier -->
201 <activity-alias android:name="DialtactsActivity"
202 android:targetActivity=".DialtactsActivity"
203 android:exported="true"
204 />
205
206 <!-- Backwards compatibility: "Call log" from Gingerbread and earlier -->
207 <activity-alias android:name="RecentCallsListActivity"
208 android:targetActivity=".DialtactsActivity"
209 android:exported="true"
210 />
211
212 <!-- Backwards compatibility: "Call log" from ICS -->
213 <activity-alias android:name=".activities.CallLogActivity"
214 android:targetActivity=".DialtactsActivity"
215 android:exported="true"
216 />
217
Chiao Chenge1d64772012-10-29 18:32:25 -0700218 <!-- Used to filter contacts list by account -->
219 <activity
Chiao Cheng82d544d2012-11-30 13:32:24 -0800220 android:name="com.android.contacts.common.list.AccountFilterActivity"
Chiao Chenge1d64772012-10-29 18:32:25 -0700221 android:label="@string/activity_title_contacts_filter"
222 android:theme="@style/ContactListFilterTheme"/>
223
224 <!-- Used to select display and sync groups -->
225 <activity
Chiao Cheng82d544d2012-11-30 13:32:24 -0800226 android:name="com.android.contacts.common.list.CustomContactListFilterActivity"
Chiao Chenge1d64772012-10-29 18:32:25 -0700227 android:label="@string/custom_list_filter"
228 android:theme="@style/ContactListFilterTheme"/>
229
Brian Attwellbd53eb42015-05-11 17:18:07 -0700230 <activity
231 android:name="com.android.contacts.common.activity.RequestImportVCardPermissionsActivity"
232 android:label="@string/launcherActivityLabel"
233 android:theme="@style/BackgroundOnlyTheme"
234 android:exported="false"/>
235
Chiao Cheng8378c572012-12-03 17:17:52 -0800236 <!-- vCard related -->
237 <activity android:name="com.android.contacts.common.vcard.ImportVCardActivity"
238 android:configChanges="orientation|screenSize|keyboardHidden"
239 android:theme="@style/BackgroundOnlyTheme">
Chiao Cheng8378c572012-12-03 17:17:52 -0800240 </activity>
241
242 <activity android:name="com.android.contacts.common.vcard.NfcImportVCardActivity"
243 android:configChanges="orientation|screenSize|keyboardHidden"
244 android:theme="@style/BackgroundOnlyTheme">
Chiao Cheng8378c572012-12-03 17:17:52 -0800245 </activity>
246
247 <activity android:name="com.android.contacts.common.vcard.CancelActivity"
248 android:theme="@style/BackgroundOnlyTheme"/>
249
250 <activity android:name="com.android.contacts.common.vcard.SelectAccountActivity"
251 android:theme="@style/BackgroundOnlyTheme"/>
252
253 <activity android:name="com.android.contacts.common.vcard.ExportVCardActivity"
254 android:theme="@style/BackgroundOnlyTheme"/>
255
Wenyi Wang4cae6752016-02-18 20:39:00 -0800256 <activity android:name="com.android.contacts.common.vcard.ShareVCardActivity"
257 android:theme="@style/BackgroundOnlyTheme" />
258
Chiao Cheng8378c572012-12-03 17:17:52 -0800259 <service
260 android:name="com.android.contacts.common.vcard.VCardService"
261 android:exported="false"/>
262 <!-- end vCard related -->
263
Jay Shrauner6e826d72015-11-17 14:41:58 -0800264 <receiver android:name=".calllog.CallLogReceiver">
Chiao Cheng94b10b52012-08-17 16:59:12 -0700265 <intent-filter>
266 <action android:name="android.intent.action.NEW_VOICEMAIL" />
267 <data
268 android:scheme="content"
269 android:host="com.android.voicemail"
270 android:mimeType="vnd.android.cursor.item/voicemail"
271 />
272 </intent-filter>
273 <intent-filter android:priority="100">
274 <action android:name="android.intent.action.BOOT_COMPLETED"/>
275 </intent-filter>
276 </receiver>
277
Yorke Lee1197d332013-08-14 08:55:53 -0700278 <receiver android:name=".interactions.UndemoteOutgoingCallReceiver">
279 <intent-filter>
280 <action android:name="android.intent.action.NEW_OUTGOING_CALL" />
281 </intent-filter>
282 </receiver>
283
Chiao Cheng94b10b52012-08-17 16:59:12 -0700284 <service
285 android:name=".calllog.CallLogNotificationsService"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600286 android:directBootAware="true"
Chiao Cheng94b10b52012-08-17 16:59:12 -0700287 android:exported="false"
288 />
Yorke Lee81e0da42013-01-30 14:56:19 -0800289
Brandon Maxwell3cb83e02016-03-04 17:33:59 -0800290 <receiver android:name=".calllog.MissedCallNotificationReceiver"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600291 android:directBootAware="true">
Nancy Chencc42b592016-01-26 14:38:57 -0800292 <intent-filter>
293 <action android:name="android.telecom.action.SHOW_MISSED_CALLS_NOTIFICATION" />
294 </intent-filter>
295 </receiver>
296
Yorke Lee81e0da42013-01-30 14:56:19 -0800297 <!-- Service to update a contact -->
298 <service
299 android:name=".contact.ContactUpdateService"
300 android:exported="false" />
Santos Cordonc286ae22013-09-03 15:58:07 -0700301
Yorke Lee294dadd2014-06-13 14:54:40 -0700302 <!-- Broadcast receiver that passively listens to location updates -->
303 <receiver android:name="com.android.contacts.common.location.CountryDetector$LocationChangedReceiver"/>
304
305 <!-- IntentService to update the user's current country -->
306 <service android:name="com.android.contacts.common.location.UpdateCountryService"
307 android:exported="false"/>
308
Santos Cordonc286ae22013-09-03 15:58:07 -0700309 <!-- Main in-call UI activity. This is never launched directly
310 from outside the phone app; instead, it's either launched by
311 the OutgoingCallBroadcaster (for outgoing calls), or as the
312 fullScreenIntent of a notification (for incoming calls.) -->
313 <activity android:name="com.android.incallui.InCallActivity"
314 android:theme="@style/Theme.InCallScreen"
Sandeep Kunta5baddd12016-06-14 10:53:42 +0530315 android:label=""
Santos Cordonc286ae22013-09-03 15:58:07 -0700316 android:excludeFromRecents="true"
317 android:launchMode="singleInstance"
Qi Wang40de5982016-02-23 12:57:04 -0800318 android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation|keyboardHidden"
Santos Cordonc286ae22013-09-03 15:58:07 -0700319 android:exported="false"
Brandon Maxwell6773df02016-01-14 15:31:42 -0800320 android:screenOrientation="nosensor"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600321 android:directBootAware="true"
Qi Wang40de5982016-02-23 12:57:04 -0800322 android:resizeableActivity="true">
Santos Cordonc286ae22013-09-03 15:58:07 -0700323 </activity>
324
Santos Cordon77cecf22014-06-26 14:50:10 -0700325 <service android:name="com.android.incallui.InCallServiceImpl"
Brandon Maxwell6773df02016-01-14 15:31:42 -0800326 android:permission="android.permission.BIND_INCALL_SERVICE"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600327 android:directBootAware="true" >
Santos Cordone9117792015-06-23 15:14:03 -0700328 <meta-data android:name="android.telecom.IN_CALL_SERVICE_UI" android:value="true" />
Brandon Maxwell88bbc3e2016-01-27 18:11:47 -0800329 <meta-data android:name="android.telecom.IN_CALL_SERVICE_RINGING"
Brandon Maxwell3c048b92016-02-25 18:24:57 -0800330 android:value="false"/>
Santos Cordon77cecf22014-06-26 14:50:10 -0700331 <intent-filter>
Tyler Gunn9dc924c2014-09-12 09:33:50 -0700332 <action android:name="android.telecom.InCallService"/>
Santos Cordon77cecf22014-06-26 14:50:10 -0700333 </intent-filter>
334 </service>
Anne Rong6fcdcc12015-08-10 17:45:55 -0700335
Brandon Maxwell3cb83e02016-03-04 17:33:59 -0800336 <!-- BroadcastReceiver for receiving Intents from Notification mechanism. -->
337 <receiver android:name="com.android.incallui.NotificationBroadcastReceiver"
Jeff Sharkey23a60762016-03-17 11:01:30 -0600338 android:directBootAware="true"
Brandon Maxwell3cb83e02016-03-04 17:33:59 -0800339 android:exported="false" />
340
Anne Rong6fcdcc12015-08-10 17:45:55 -0700341 <provider
342 android:name=".database.FilteredNumberProvider"
Anne Rong7e488f52015-08-19 18:32:08 -0700343 android:authorities="com.android.dialer.database.filterednumberprovider"
Anne Rong6fcdcc12015-08-10 17:45:55 -0700344 android:exported="false"
345 android:multiprocess="false"
346 />
Wenyi Wang4cae6752016-02-18 20:39:00 -0800347
348 <provider
349 android:name="android.support.v4.content.FileProvider"
350 android:authorities="@string/contacts_file_provider_authority"
351 android:grantUriPermissions="true"
352 android:exported="false">
353 <meta-data
354 android:name="android.support.FILE_PROVIDER_PATHS"
355 android:resource="@xml/file_paths" />
356 </provider>
Sarmad Hashmi450a6052016-02-09 18:54:26 -0800357
358 <provider
359 android:name=".database.VoicemailArchiveProvider"
360 android:authorities="com.android.dialer.database.voicemailarchiveprovider"
361 android:exported="false"
362 android:multiprocess="false"
363 />
Zhu Youhua15e03872016-06-06 18:40:07 +0800364
365 <activity android:name=".SpeedDialListActivity"
366 android:theme="@style/SpeedDialtactsTheme"
367 android:label="@string/speed_dial_settings" >
368 <intent-filter>
369 <action android:name="android.intent.action.MAIN"/>
370 </intent-filter>
371 </activity>
Chiao Cheng94b10b52012-08-17 16:59:12 -0700372 </application>
373</manifest>