blob: fa4d3b101c43bc7a7c510b8629e8a44590a24617 [file] [log] [blame]
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08001<?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
Neel Parekhbe406ff2009-09-16 15:31:22 -07007
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08008 http://www.apache.org/licenses/LICENSE-2.0
Neel Parekhbe406ff2009-09-16 15:31:22 -07009
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080010 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"
Jeff Sharkey26c7e732009-04-01 17:30:46 -070018 package="com.android.contacts"
19 android:sharedUserId="android.uid.shared"
Dianne Hackborn15a5ad82010-06-22 16:09:43 -070020 android:sharedUserLabel="@string/sharedUserLabel"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080021>
Jeff Sharkey26c7e732009-04-01 17:30:46 -070022
Jeff Hamiltone7883532010-02-11 16:25:48 -060023 <original-package android:name="com.android.contacts" />
24
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080025 <uses-permission android:name="android.permission.CALL_PRIVILEGED" />
26 <uses-permission android:name="android.permission.READ_CONTACTS" />
27 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
28 <uses-permission android:name="android.permission.INTERNET" />
29 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
30 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
31 <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" />
Daisuke Miyakawa2991dd92009-05-19 08:32:17 +090032 <uses-permission android:name="android.permission.WAKE_LOCK" />
Daisuke Miyakawa72c50522009-07-07 15:37:59 -070033 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Dmitri Plotnikovdaa2d5c2010-01-29 17:44:20 -080034 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Fred Quintana104b7922009-07-22 20:01:15 -070035 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
Nicolas Catania9bcf4702009-11-06 13:19:43 -080036 <uses-permission android:name="android.permission.VIBRATE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080037
38 <application
39 android:label="@string/contactsList"
40 android:icon="@drawable/ic_launcher_contacts"
41 android:process="android.process.acore"
42 android:taskAffinity="android.task.contacts"
Daniel Lehmann57b5aa12010-09-23 17:42:23 -070043 android:hardwareAccelerated="true"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080044 >
45
46 <!-- A virtual 12 key dialer -->
47 <activity android:name="TwelveKeyDialer"
48 android:launchMode="singleTop"
49 >
50 <intent-filter>
51 <action android:name="com.android.phone.action.TOUCH_DIALER" />
52 <category android:name="android.intent.category.DEFAULT" />
53 <category android:name="android.intent.category.TAB" />
54 </intent-filter>
55 </activity>
56
57 <!-- A list of recent calls -->
58 <activity android:name="RecentCallsListActivity"
59 android:label="@string/recentCallsIconLabel"
60 >
61 <intent-filter>
62 <action android:name="com.android.phone.action.RECENT_CALLS" />
63 <category android:name="android.intent.category.DEFAULT" />
64 <category android:name="android.intent.category.TAB" />
65 </intent-filter>
66 </activity>
67
Daniel Lehmann7675e122010-04-21 17:31:11 -070068 <!-- Tab container for all tabs -->
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080069 <activity android:name="DialtactsActivity"
70 android:label="@string/launcherDialer"
Nicolas Catania177d88f2009-09-27 15:15:05 -070071 android:theme="@style/DialtactsTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080072 android:launchMode="singleTask"
73 android:clearTaskOnLaunch="true"
74 android:icon="@drawable/ic_launcher_phone"
75 android:screenOrientation="nosensor"
Dmitri Plotnikov30c26992010-09-10 14:00:34 -070076 android:enabled="@bool/dialerEnabled"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080077 >
78 <intent-filter>
79 <action android:name="android.intent.action.DIAL" />
80 <category android:name="android.intent.category.DEFAULT" />
81 <category android:name="android.intent.category.BROWSABLE" />
82 <data android:mimeType="vnd.android.cursor.item/phone" />
83 <data android:mimeType="vnd.android.cursor.item/person" />
84 </intent-filter>
85 <intent-filter>
86 <action android:name="android.intent.action.DIAL" />
87 <category android:name="android.intent.category.DEFAULT" />
88 <category android:name="android.intent.category.BROWSABLE" />
89 <data android:scheme="voicemail" />
90 </intent-filter>
91 <intent-filter>
92 <action android:name="android.intent.action.DIAL" />
93 <category android:name="android.intent.category.DEFAULT" />
94 </intent-filter>
95 <intent-filter>
96 <action android:name="android.intent.action.MAIN" />
97 <category android:name="android.intent.category.DEFAULT" />
98 <category android:name="android.intent.category.LAUNCHER" />
99 <category android:name="android.intent.category.BROWSABLE" />
100 </intent-filter>
101 <intent-filter>
102 <action android:name="android.intent.action.VIEW" />
103 <action android:name="android.intent.action.DIAL" />
104 <category android:name="android.intent.category.DEFAULT" />
105 <category android:name="android.intent.category.BROWSABLE" />
106 <data android:scheme="tel" />
107 </intent-filter>
108 <intent-filter>
109 <action android:name="android.intent.action.VIEW" />
110 <category android:name="android.intent.category.DEFAULT" />
111 <category android:name="android.intent.category.BROWSABLE" />
112 <data android:mimeType="vnd.android.cursor.dir/calls" />
113 </intent-filter>
114 <intent-filter>
115 <action android:name="android.intent.action.CALL_BUTTON" />
116 <category android:name="android.intent.category.DEFAULT" />
117 <category android:name="android.intent.category.BROWSABLE" />
118 </intent-filter>
119 </activity>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700120
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500121 <!-- Front door proxy that picks the right UI based on the screen config -->
122 <activity android:name=".activities.ContactsFrontDoor"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800123 android:label="@string/contactsList"
124 android:icon="@drawable/ic_launcher_contacts"
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500125 android:theme="@android:style/Theme.NoTitleBar"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800126 >
127 <intent-filter>
128 <action android:name="android.intent.action.MAIN" />
129 <category android:name="android.intent.category.DEFAULT" />
130 <category android:name="android.intent.category.LAUNCHER" />
Dmitri Plotnikov032bb362009-05-06 17:05:39 -0700131 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800132 </intent-filter>
133
134 <intent-filter>
135 <action android:name="android.intent.action.VIEW" />
136 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey2428f622009-09-13 01:08:43 -0700137 <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" />
138 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800139 </intent-filter>
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500140 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800141
Daniel Lehmann7675e122010-04-21 17:31:11 -0700142 <!-- Main launch Intent to open the Contacts app. This will open the app in its last manual
143 state. This is the state that has been explicitly set by the user (e.g. by clicking a tab).
144 States configured via other Intents (e.g. CallLog after Call) are not considered manual
145 state. At the moment, the Intent always goes to the DialtactsActivity, but this might later
146 be changed to also include sub-activities like Edit or View if they were left open -->
147
148 <activity-alias android:name="ContactsLaunchActivity"
149 android:targetActivity="DialtactsActivity"
150 >
151 <intent-filter>
152 <action android:name="android.intent.action.MAIN" />
153 <category android:name="android.intent.category.DEFAULT" />
154 <category android:name="android.intent.category.BROWSABLE" />
155 </intent-filter>
156 </activity-alias>
157
The Android Open Source Project1f620962009-03-09 11:52:14 -0700158 <!-- An empty activity that presents the DialtactActivity's Favorites tab -->
159 <activity-alias android:name="DialtactsFavoritesEntryActivity"
160 android:targetActivity="DialtactsActivity"
The Android Open Source Project1f620962009-03-09 11:52:14 -0700161 >
162 <intent-filter>
163 <action android:name="android.intent.action.MAIN" />
164 <category android:name="android.intent.category.DEFAULT" />
165 </intent-filter>
166 </activity-alias>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700167
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700168 <!-- The actual list of contacts -->
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700169 <activity android:name=".activities.ContactBrowserActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800170 android:label="@string/contactsList"
171 android:clearTaskOnLaunch="true"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700172 android:theme="@style/ContactBrowserTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800173 >
174 <intent-filter>
175 <action android:name="com.android.contacts.action.LIST_DEFAULT" />
176 <category android:name="android.intent.category.DEFAULT" />
177 <category android:name="android.intent.category.TAB" />
178 </intent-filter>
179
180 <intent-filter>
181 <action android:name="com.android.contacts.action.LIST_CONTACTS" />
182 <category android:name="android.intent.category.DEFAULT" />
183 <category android:name="android.intent.category.TAB" />
184 </intent-filter>
185
186 <intent-filter>
187 <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" />
188 <category android:name="android.intent.category.DEFAULT" />
189 <category android:name="android.intent.category.TAB" />
190 </intent-filter>
191
192 <intent-filter>
193 <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" />
194 <category android:name="android.intent.category.DEFAULT" />
195 <category android:name="android.intent.category.TAB" />
196 </intent-filter>
197
198 <intent-filter android:label="@string/starredList">
199 <action android:name="com.android.contacts.action.LIST_STARRED" />
200 <category android:name="android.intent.category.DEFAULT" />
201 <category android:name="android.intent.category.TAB" />
202 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700203
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800204 <intent-filter android:label="@string/frequentList">
205 <action android:name="com.android.contacts.action.LIST_FREQUENT" />
206 <category android:name="android.intent.category.DEFAULT" />
207 <category android:name="android.intent.category.TAB" />
208 </intent-filter>
209
210 <intent-filter android:label="@string/strequentList">
211 <action android:name="com.android.contacts.action.LIST_STREQUENT" />
212 <category android:name="android.intent.category.DEFAULT" />
213 <category android:name="android.intent.category.TAB" />
214 </intent-filter>
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700215
216 <intent-filter>
217 <action android:name="android.intent.action.SEARCH" />
218 <category android:name="android.intent.category.DEFAULT" />
219 </intent-filter>
220
221 <meta-data android:name="android.app.searchable"
222 android:resource="@xml/searchable"
223 />
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700224 </activity>
225
226 <activity android:name=".activities.ContactSelectionActivity"
227 android:label="@string/contactsList"
228 android:clearTaskOnLaunch="true"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700229 android:theme="@style/ContactPickerTheme"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700230 >
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800231 <intent-filter>
232 <action android:name="android.intent.action.INSERT_OR_EDIT" />
233 <category android:name="android.intent.category.DEFAULT" />
234 <data android:mimeType="vnd.android.cursor.item/person" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700235 <data android:mimeType="vnd.android.cursor.item/contact" />
236 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800237 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700238
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800239 <intent-filter>
240 <action android:name="android.intent.action.PICK" />
241 <category android:name="android.intent.category.DEFAULT" />
Evan Millarc2d862e2009-08-31 12:52:39 -0700242 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
243 <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" />
244 <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" />
245 <data android:mimeType="vnd.android.cursor.dir/phone" android:host="contacts" />
246 <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" android:host="com.android.contacts" />
247 <data android:mimeType="vnd.android.cursor.dir/postal-address" android:host="contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800248 </intent-filter>
249
250 <intent-filter>
251 <action android:name="android.intent.action.GET_CONTENT" />
252 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov631c1ff2009-09-03 16:57:30 -0700253 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
254 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
255 <data android:mimeType="vnd.android.cursor.item/phone_v2" android:host="com.android.contacts" />
256 <data android:mimeType="vnd.android.cursor.item/phone" android:host="contacts" />
257 <data android:mimeType="vnd.android.cursor.item/postal-address_v2" android:host="com.android.contacts" />
258 <data android:mimeType="vnd.android.cursor.item/postal-address" android:host="contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800259 </intent-filter>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700260 </activity>
261
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700262 <!-- Backwards compatibility: somebody may have hard coded this activity name -->
263 <activity-alias android:name="ContactsListActivity"
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700264 android:targetActivity=".activities.ContactBrowserActivity"
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700265 />
266
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700267 <!-- An activity for joining contacts -->
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700268 <activity android:name="JoinContactActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700269 android:theme="@style/JoinContactActivityTheme"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700270 android:clearTaskOnLaunch="true"
271 >
272 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700273 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700274 <category android:name="android.intent.category.DEFAULT" />
275 </intent-filter>
276 </activity>
277
Dmitri Plotnikove8ae9ac2010-04-21 13:37:15 -0700278 <!-- An activity for selecting multiple phone numbers -->
Dmitri Plotnikova70c4f42010-09-26 15:57:01 -0700279 <activity android:name="MultiplePhonePickerActivity"
280 android:enabled="false">
Dmitri Plotnikove8ae9ac2010-04-21 13:37:15 -0700281 <intent-filter>
282 <action android:name="com.android.contacts.action.GET_MULTIPLE_PHONES" />
283 <category android:name="android.intent.category.DEFAULT" />
284 <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" />
285 </intent-filter>
286 </activity>
287
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800288 <!-- The contacts search/filter UI -->
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700289 <activity android:name=".activities.ContactSearchActivity"
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800290 android:theme="@style/ContactsSearchTheme"
Dmitri Plotnikovd5061fe2010-06-07 15:06:58 -0700291 android:windowSoftInputMode="stateAlwaysVisible"
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800292 >
293 <intent-filter>
294 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
295 <category android:name="android.intent.category.DEFAULT" />
296 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
297 </intent-filter>
Dmitri Plotnikov4cc85dd2010-06-29 13:15:26 -0700298
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800299 </activity>
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700300
Dmitri Plotnikov207d4f62010-03-23 16:38:29 -0700301 <!-- The contacts search/filter UI -->
Dmitri Plotnikov4cc85dd2010-06-29 13:15:26 -0700302 <activity-alias android:name="SearchResultsActivity"
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700303 android:targetActivity=".activities.ContactBrowserActivity">
Dmitri Plotnikov4cc85dd2010-06-29 13:15:26 -0700304 </activity-alias>
Dmitri Plotnikov207d4f62010-03-23 16:38:29 -0700305
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700306 <!-- Used to set options -->
Daniel Lehmann10105742010-07-15 17:35:57 -0700307 <activity
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700308 android:name=".preference.ContactsPreferenceActivity"
309 android:label="@string/activity_title_settings"
Daniel Lehmann10105742010-07-15 17:35:57 -0700310 android:theme="@style/ContactsPreferencesTheme" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700311
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700312 <!-- Used to select display and sync groups -->
313 <activity
314 android:name=".list.CustomContactListFilterActivity"
315 android:label="@string/custom_list_filter"
Dmitri Plotnikova4d6a3b2010-10-06 18:04:31 -0700316 android:theme="@style/CustomContactListFilterTheme" />
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700317
Jeff Sharkey802b2052009-08-04 14:21:06 -0700318 <activity
Jeff Sharkeye8971622009-09-17 15:42:36 -0700319 android:name=".ui.ShowOrCreateActivity"
320 android:theme="@style/FullyTranslucent">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700321
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700322 <intent-filter>
323 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700324 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700325 <data android:scheme="mailto" />
326 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700327 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700328 </activity>
329
Evan Millar0d0ab342009-09-30 19:03:35 -0700330 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700331 temporary hack until we add better framework support. -->
332 <activity
Evan Millar0d0ab342009-09-30 19:03:35 -0700333 android:name=".ui.QuickContactActivity"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700334 android:theme="@style/FullyTranslucent.QuickContact"
335 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700336 android:excludeFromRecents="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700337 android:taskAffinity="android.task.quickcontact"
338 android:windowSoftInputMode="stateUnchanged"
339 >
Jeff Sharkey3f177592009-05-18 15:23:12 -0700340
341 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700342 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700343 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700344 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Bai Taod128adc2010-03-24 08:50:35 +0800345 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700346 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800347 </activity>
348
349 <activity-alias android:name="ContactShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700350 android:targetActivity=".activities.ContactSelectionActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700351 android:label="@string/shortcutContact"
352 android:icon="@drawable/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800353
354 <intent-filter>
355 <action android:name="android.intent.action.CREATE_SHORTCUT" />
356 <category android:name="android.intent.category.DEFAULT" />
357 </intent-filter>
358
359 </activity-alias>
360
Dianne Hackborn333a6152009-05-26 12:46:23 -0700361 <activity-alias android:name="alias.DialShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700362 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700363 android:label="@string/shortcutDialContact"
Mike Cleronf143a452009-09-30 01:13:23 -0700364 android:icon="@drawable/ic_launcher_shortcut_directdial">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700365
366 <intent-filter>
367 <action android:name="android.intent.action.CREATE_SHORTCUT" />
368 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200369 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700370 </intent-filter>
371
372 </activity-alias>
373
374 <activity-alias android:name="alias.MessageShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700375 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700376 android:label="@string/shortcutMessageContact"
Mike Cleronf143a452009-09-30 01:13:23 -0700377 android:icon="@drawable/ic_launcher_shortcut_directmessage">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700378
379 <intent-filter>
380 <action android:name="android.intent.action.CREATE_SHORTCUT" />
381 <category android:name="android.intent.category.DEFAULT" />
382 </intent-filter>
383
384 </activity-alias>
385
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800386 <activity android:name="CallDetailActivity"
387 android:label="@string/callDetailTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700388 android:theme="@style/CallDetailActivityTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800389 >
390 <intent-filter>
391 <action android:name="android.intent.action.VIEW" />
392 <category android:name="android.intent.category.DEFAULT" />
393 <data android:mimeType="vnd.android.cursor.item/calls" />
394 </intent-filter>
395 </activity>
396
397 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700398 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800399 android:label="@string/viewContactTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700400 android:theme="@style/ContactDetailActivityTheme">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700401
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800402 <intent-filter android:label="@string/viewContactDesription">
403 <action android:name="android.intent.action.VIEW" />
404 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700405 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
406 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700407 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800408 </intent-filter>
409 </activity>
410
Daniel Lehmannf319cf82010-06-25 17:41:13 -0700411 <!-- Create a new or edit an existing contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700412 <activity
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700413 android:name=".activities.ContactEditorActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700414 android:theme="@style/ContactEditorActivityTheme"
Daniel Lehmann3a120772010-06-21 16:21:35 -0700415 android:windowSoftInputMode="adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700416
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800417 <intent-filter android:label="@string/editContactDescription">
418 <action android:name="android.intent.action.EDIT" />
419 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700420 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700421 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Evan Millar8a79cee2009-08-19 17:20:49 -0700422 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800423 </intent-filter>
424 <intent-filter android:label="@string/insertContactDescription">
425 <action android:name="android.intent.action.INSERT" />
426 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700427 <data android:mimeType="vnd.android.cursor.dir/person" />
428 <data android:mimeType="vnd.android.cursor.dir/contact" />
429 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800430 </intent-filter>
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700431 </activity>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700432
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700433 <!-- Stub service used to keep our process alive long enough for
434 background threads to finish their operations. -->
435 <service
436 android:name=".util.EmptyService"
437 android:exported="false" />
438
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700439 <!-- Service to save a contact -->
440 <service
441 android:name=".views.ContactSaveService"
442 android:exported="false" />
443
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700444 <!-- Views the details of a single contact -->
445 <activity android:name="ContactOptionsActivity"
446 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700447 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700448 <intent-filter>
449 <action android:name="android.intent.action.EDIT" />
450 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800451 </intent-filter>
452 </activity>
453
454 <!-- Attaches a photo to a contact. Started from external applications -->
455 <activity android:name="AttachImage"
456 android:label="@string/attachToContact"
457 android:taskAffinity="">
458 <intent-filter>
459 <action android:name="android.intent.action.ATTACH_DATA" />
460 <data android:mimeType="image/*" />
461 <category android:name="android.intent.category.DEFAULT" />
462 </intent-filter>
463 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700464 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800465
Dmitri Plotnikov884e3932010-05-13 19:13:51 -0700466 <!-- Interstitial activity that shows a phone disambig dialog -->
467 <activity android:name="CallContactActivity"
468 android:theme="@android:style/Theme.Translucent">
469 </activity>
470
Dmitri Plotnikovea82f902010-08-24 17:22:29 -0700471 <!-- Makes .ContactBrowserActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800472 <meta-data
473 android:name="android.app.default_searchable"
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700474 android:value=".activities.ContactBrowserActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800475
476
477 <!-- LIVE FOLDERS -->
478 <activity
479 android:name=".ContactsLiveFolders$AllContacts"
480 android:label="@string/liveFolderAll"
Romain Guy4eb77b62009-03-24 18:10:17 -0700481 android:icon="@drawable/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800482 <intent-filter>
483 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
484 <category android:name="android.intent.category.DEFAULT" />
485 </intent-filter>
486 </activity>
487
488 <activity
489 android:name=".ContactsLiveFolders$StarredContacts"
490 android:label="@string/liveFolderFavorites"
Romain Guy4eb77b62009-03-24 18:10:17 -0700491 android:icon="@drawable/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800492 <intent-filter>
493 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
494 <category android:name="android.intent.category.DEFAULT" />
495 </intent-filter>
496 </activity>
497
498 <activity
499 android:name=".ContactsLiveFolders$PhoneContacts"
500 android:label="@string/liveFolderPhone"
Romain Guy4eb77b62009-03-24 18:10:17 -0700501 android:icon="@drawable/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800502 <intent-filter>
503 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
504 <category android:name="android.intent.category.DEFAULT" />
505 </intent-filter>
506 </activity>
507
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700508 <!-- vCard related -->
509 <activity android:name=".vcard.ImportVCardActivity"
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900510 android:theme="@style/BackgroundOnly">
511 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800512 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700513 <data android:mimeType="text/directory" />
Daisuke Miyakawa92ba98a2010-06-22 09:12:19 +0900514 <data android:mimeType="text/vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800515 <data android:mimeType="text/x-vcard" />
516 <category android:name="android.intent.category.DEFAULT" />
517 </intent-filter>
518 </activity>
519
Daisuke Miyakawa18b51902010-08-19 14:13:38 -0700520 <activity android:name=".vcard.CancelImportActivity"
521 android:theme="@style/BackgroundOnly" />
522
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700523 <activity android:name=".vcard.SelectAccountActivity"
Daisuke Miyakawa6d2f27f2010-04-21 16:11:38 +0900524 android:theme="@style/BackgroundOnly" />
525
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700526 <activity android:name=".vcard.ExportVCardActivity"
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700527 android:theme="@style/BackgroundOnly" />
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700528
Daisuke Miyakawad8fb81a2010-06-08 17:44:22 -0700529 <service
530 android:name=".vcard.VCardService"
531 android:exported="false" />
532
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700533 <!-- Pinned header list demo -->
534 <activity android:name=".widget.PinnedHeaderListDemoActivity">
535 <intent-filter>
536 <action android:name="android.intent.action.MAIN" />
537 <category android:name="android.intent.category.DEFAULT" />
538 </intent-filter>
539 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800540 </application>
541</manifest>