blob: 27590c08be7d43b492ca33c185f0fc4f923ab5ea [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"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080020>
Jeff Sharkey26c7e732009-04-01 17:30:46 -070021
Jeff Hamiltone7883532010-02-11 16:25:48 -060022 <original-package android:name="com.android.contacts" />
23
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080024 <uses-permission android:name="android.permission.CALL_PRIVILEGED" />
25 <uses-permission android:name="android.permission.READ_CONTACTS" />
26 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
27 <uses-permission android:name="android.permission.INTERNET" />
28 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
29 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
30 <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" />
Daisuke Miyakawa2991dd92009-05-19 08:32:17 +090031 <uses-permission android:name="android.permission.WAKE_LOCK" />
Daisuke Miyakawa72c50522009-07-07 15:37:59 -070032 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Dmitri Plotnikovdaa2d5c2010-01-29 17:44:20 -080033 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Fred Quintana104b7922009-07-22 20:01:15 -070034 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
Nicolas Catania9bcf4702009-11-06 13:19:43 -080035 <uses-permission android:name="android.permission.VIBRATE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080036
37 <application
38 android:label="@string/contactsList"
39 android:icon="@drawable/ic_launcher_contacts"
40 android:process="android.process.acore"
41 android:taskAffinity="android.task.contacts"
42 >
43
44 <!-- A virtual 12 key dialer -->
45 <activity android:name="TwelveKeyDialer"
46 android:launchMode="singleTop"
47 >
48 <intent-filter>
49 <action android:name="com.android.phone.action.TOUCH_DIALER" />
50 <category android:name="android.intent.category.DEFAULT" />
51 <category android:name="android.intent.category.TAB" />
52 </intent-filter>
53 </activity>
54
55 <!-- A list of recent calls -->
56 <activity android:name="RecentCallsListActivity"
57 android:label="@string/recentCallsIconLabel"
58 >
59 <intent-filter>
60 <action android:name="com.android.phone.action.RECENT_CALLS" />
61 <category android:name="android.intent.category.DEFAULT" />
62 <category android:name="android.intent.category.TAB" />
63 </intent-filter>
64 </activity>
65
66 <!-- Tab container for TwelveKeyDialer and RecentCallsList -->
67 <activity android:name="DialtactsActivity"
68 android:label="@string/launcherDialer"
Nicolas Catania177d88f2009-09-27 15:15:05 -070069 android:theme="@style/DialtactsTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080070 android:launchMode="singleTask"
71 android:clearTaskOnLaunch="true"
72 android:icon="@drawable/ic_launcher_phone"
73 android:screenOrientation="nosensor"
74 >
75 <intent-filter>
76 <action android:name="android.intent.action.DIAL" />
77 <category android:name="android.intent.category.DEFAULT" />
78 <category android:name="android.intent.category.BROWSABLE" />
79 <data android:mimeType="vnd.android.cursor.item/phone" />
80 <data android:mimeType="vnd.android.cursor.item/person" />
81 </intent-filter>
82 <intent-filter>
83 <action android:name="android.intent.action.DIAL" />
84 <category android:name="android.intent.category.DEFAULT" />
85 <category android:name="android.intent.category.BROWSABLE" />
86 <data android:scheme="voicemail" />
87 </intent-filter>
88 <intent-filter>
89 <action android:name="android.intent.action.DIAL" />
90 <category android:name="android.intent.category.DEFAULT" />
91 </intent-filter>
92 <intent-filter>
93 <action android:name="android.intent.action.MAIN" />
94 <category android:name="android.intent.category.DEFAULT" />
95 <category android:name="android.intent.category.LAUNCHER" />
96 <category android:name="android.intent.category.BROWSABLE" />
97 </intent-filter>
98 <intent-filter>
99 <action android:name="android.intent.action.VIEW" />
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="tel" />
104 </intent-filter>
105 <intent-filter>
106 <action android:name="android.intent.action.VIEW" />
107 <category android:name="android.intent.category.DEFAULT" />
108 <category android:name="android.intent.category.BROWSABLE" />
109 <data android:mimeType="vnd.android.cursor.dir/calls" />
110 </intent-filter>
111 <intent-filter>
112 <action android:name="android.intent.action.CALL_BUTTON" />
113 <category android:name="android.intent.category.DEFAULT" />
114 <category android:name="android.intent.category.BROWSABLE" />
115 </intent-filter>
116 </activity>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700117
Dmitri Plotnikov032bb362009-05-06 17:05:39 -0700118 <!-- Tab container for Activity Stream and Contacts -->
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800119 <activity-alias android:name="DialtactsContactsEntryActivity"
120 android:targetActivity="DialtactsActivity"
121 android:label="@string/contactsList"
122 android:icon="@drawable/ic_launcher_contacts"
123 >
124 <intent-filter>
125 <action android:name="android.intent.action.MAIN" />
126 <category android:name="android.intent.category.DEFAULT" />
127 <category android:name="android.intent.category.LAUNCHER" />
Dmitri Plotnikov032bb362009-05-06 17:05:39 -0700128 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800129 </intent-filter>
130
131 <intent-filter>
132 <action android:name="android.intent.action.VIEW" />
133 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey2428f622009-09-13 01:08:43 -0700134 <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" />
135 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800136 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700137
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800138 </activity-alias>
139
The Android Open Source Project1f620962009-03-09 11:52:14 -0700140 <!-- An empty activity that presents the DialtactActivity's Favorites tab -->
141 <activity-alias android:name="DialtactsFavoritesEntryActivity"
142 android:targetActivity="DialtactsActivity"
The Android Open Source Project1f620962009-03-09 11:52:14 -0700143 >
144 <intent-filter>
145 <action android:name="android.intent.action.MAIN" />
146 <category android:name="android.intent.category.DEFAULT" />
147 </intent-filter>
148 </activity-alias>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700149
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800150 <!-- The actual list of contacts, usually embedded in ContactsActivity -->
151 <activity android:name="ContactsListActivity"
152 android:label="@string/contactsList"
153 android:clearTaskOnLaunch="true"
154 >
155 <intent-filter>
156 <action android:name="com.android.contacts.action.LIST_DEFAULT" />
157 <category android:name="android.intent.category.DEFAULT" />
158 <category android:name="android.intent.category.TAB" />
159 </intent-filter>
160
161 <intent-filter>
162 <action android:name="com.android.contacts.action.LIST_CONTACTS" />
163 <category android:name="android.intent.category.DEFAULT" />
164 <category android:name="android.intent.category.TAB" />
165 </intent-filter>
166
167 <intent-filter>
168 <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" />
169 <category android:name="android.intent.category.DEFAULT" />
170 <category android:name="android.intent.category.TAB" />
171 </intent-filter>
172
173 <intent-filter>
174 <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" />
175 <category android:name="android.intent.category.DEFAULT" />
176 <category android:name="android.intent.category.TAB" />
177 </intent-filter>
178
179 <intent-filter android:label="@string/starredList">
180 <action android:name="com.android.contacts.action.LIST_STARRED" />
181 <category android:name="android.intent.category.DEFAULT" />
182 <category android:name="android.intent.category.TAB" />
183 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700184
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800185 <intent-filter android:label="@string/frequentList">
186 <action android:name="com.android.contacts.action.LIST_FREQUENT" />
187 <category android:name="android.intent.category.DEFAULT" />
188 <category android:name="android.intent.category.TAB" />
189 </intent-filter>
190
191 <intent-filter android:label="@string/strequentList">
192 <action android:name="com.android.contacts.action.LIST_STREQUENT" />
193 <category android:name="android.intent.category.DEFAULT" />
194 <category android:name="android.intent.category.TAB" />
195 </intent-filter>
196
197 <intent-filter>
198 <action android:name="android.intent.action.INSERT_OR_EDIT" />
199 <category android:name="android.intent.category.DEFAULT" />
200 <data android:mimeType="vnd.android.cursor.item/person" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700201 <data android:mimeType="vnd.android.cursor.item/contact" />
202 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800203 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700204
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800205 <intent-filter>
206 <action android:name="android.intent.action.PICK" />
207 <category android:name="android.intent.category.DEFAULT" />
Evan Millarc2d862e2009-08-31 12:52:39 -0700208 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
209 <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" />
210 <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" />
211 <data android:mimeType="vnd.android.cursor.dir/phone" android:host="contacts" />
212 <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" android:host="com.android.contacts" />
213 <data android:mimeType="vnd.android.cursor.dir/postal-address" android:host="contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800214 </intent-filter>
215
216 <intent-filter>
217 <action android:name="android.intent.action.GET_CONTENT" />
218 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov631c1ff2009-09-03 16:57:30 -0700219 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
220 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
221 <data android:mimeType="vnd.android.cursor.item/phone_v2" android:host="com.android.contacts" />
222 <data android:mimeType="vnd.android.cursor.item/phone" android:host="contacts" />
223 <data android:mimeType="vnd.android.cursor.item/postal-address_v2" android:host="com.android.contacts" />
224 <data android:mimeType="vnd.android.cursor.item/postal-address" android:host="contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800225 </intent-filter>
226
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700227 </activity>
228
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700229 <!-- An activity for joining contacts -->
230 <activity android:name="ContactsListActivity$JoinContactActivity"
231 android:theme="@style/TallTitleBarTheme"
232 android:clearTaskOnLaunch="true"
233 >
234 <intent-filter>
235 <action android:name="com.android.contacts.action.JOIN_AGGREGATE" />
236 <category android:name="android.intent.category.DEFAULT" />
237 </intent-filter>
238 </activity>
239
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800240 <!-- The contacts search/filter UI -->
241 <activity android:name="ContactsListActivity$ContactsSearchActivity"
242 android:theme="@style/ContactsSearchTheme"
243 android:windowSoftInputMode="stateAlwaysVisible|adjustPan"
244 >
245 <intent-filter>
246 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
247 <category android:name="android.intent.category.DEFAULT" />
248 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
249 </intent-filter>
250 </activity>
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700251
Dmitri Plotnikov207d4f62010-03-23 16:38:29 -0700252 <!-- The contacts search/filter UI -->
253 <activity android:name="SearchResultsActivity"
254 android:theme="@style/TallTitleBarTheme"
255 android:label="@string/contactsList"
256 >
257 <intent-filter>
258 <action android:name="android.intent.action.SEARCH" />
259 <category android:name="android.intent.category.DEFAULT" />
260 </intent-filter>
261
262 <meta-data android:name="android.app.searchable"
263 android:resource="@xml/searchable"
264 />
265 </activity>
266
Jeff Sharkeye8971622009-09-17 15:42:36 -0700267 <!-- Used to select display and sync groups -->
Dmitri Plotnikov1ea45f22010-02-04 17:17:44 -0800268 <activity android:name=".ui.ContactsPreferencesActivity" android:label="@string/displayGroups" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700269
Jeff Sharkey802b2052009-08-04 14:21:06 -0700270 <activity
Jeff Sharkeye8971622009-09-17 15:42:36 -0700271 android:name=".ui.ShowOrCreateActivity"
272 android:theme="@style/FullyTranslucent">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700273
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700274 <intent-filter>
275 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700276 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700277 <data android:scheme="mailto" />
278 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700279 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700280 </activity>
281
Evan Millar0d0ab342009-09-30 19:03:35 -0700282 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700283 temporary hack until we add better framework support. -->
284 <activity
Evan Millar0d0ab342009-09-30 19:03:35 -0700285 android:name=".ui.QuickContactActivity"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700286 android:theme="@style/FullyTranslucent.QuickContact"
287 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700288 android:excludeFromRecents="true"
289 android:taskAffinity="android.task.quickcontact">
Jeff Sharkey3f177592009-05-18 15:23:12 -0700290
291 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700292 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700293 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700294 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700295 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800296 </activity>
297
298 <activity-alias android:name="ContactShortcut"
299 android:targetActivity="ContactsListActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700300 android:label="@string/shortcutContact"
301 android:icon="@drawable/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800302
303 <intent-filter>
304 <action android:name="android.intent.action.CREATE_SHORTCUT" />
305 <category android:name="android.intent.category.DEFAULT" />
306 </intent-filter>
307
308 </activity-alias>
309
Dianne Hackborn333a6152009-05-26 12:46:23 -0700310 <activity-alias android:name="alias.DialShortcut"
311 android:targetActivity="ContactsListActivity"
312 android:label="@string/shortcutDialContact"
Mike Cleronf143a452009-09-30 01:13:23 -0700313 android:icon="@drawable/ic_launcher_shortcut_directdial">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700314
315 <intent-filter>
316 <action android:name="android.intent.action.CREATE_SHORTCUT" />
317 <category android:name="android.intent.category.DEFAULT" />
Tobias Haamel00ca33c2010-02-26 16:24:45 +0100318 <category android:name="android.intent.category.CAR_DOCK" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700319 </intent-filter>
320
321 </activity-alias>
322
323 <activity-alias android:name="alias.MessageShortcut"
324 android:targetActivity="ContactsListActivity"
325 android:label="@string/shortcutMessageContact"
Mike Cleronf143a452009-09-30 01:13:23 -0700326 android:icon="@drawable/ic_launcher_shortcut_directmessage">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700327
328 <intent-filter>
329 <action android:name="android.intent.action.CREATE_SHORTCUT" />
330 <category android:name="android.intent.category.DEFAULT" />
331 </intent-filter>
332
333 </activity-alias>
334
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800335 <activity android:name="CallDetailActivity"
336 android:label="@string/callDetailTitle"
Romain Guy4eb77b62009-03-24 18:10:17 -0700337 android:theme="@style/TallTitleBarTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800338 >
339 <intent-filter>
340 <action android:name="android.intent.action.VIEW" />
341 <category android:name="android.intent.category.DEFAULT" />
342 <data android:mimeType="vnd.android.cursor.item/calls" />
343 </intent-filter>
344 </activity>
345
346 <!-- Views the details of a single contact -->
347 <activity android:name="ViewContactActivity"
348 android:label="@string/viewContactTitle"
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700349 android:theme="@style/TallTitleBarTheme">
350
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800351 <intent-filter android:label="@string/viewContactDesription">
352 <action android:name="android.intent.action.VIEW" />
353 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700354 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
355 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700356 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800357 </intent-filter>
358 </activity>
359
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700360 <!-- Edit or insert details for a contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700361 <activity
362 android:name=".ui.EditContactActivity"
Evan Millar81f957d2009-10-12 15:09:21 -0700363 android:windowSoftInputMode="stateHidden|adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700364
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800365 <intent-filter android:label="@string/editContactDescription">
366 <action android:name="android.intent.action.EDIT" />
367 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700368 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700369 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Evan Millar8a79cee2009-08-19 17:20:49 -0700370 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800371 </intent-filter>
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700372
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800373 <intent-filter android:label="@string/insertContactDescription">
374 <action android:name="android.intent.action.INSERT" />
375 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700376 <data android:mimeType="vnd.android.cursor.dir/person" />
377 <data android:mimeType="vnd.android.cursor.dir/contact" />
378 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800379 </intent-filter>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700380
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800381 </activity>
382
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700383 <!-- Stub service used to keep our process alive long enough for
384 background threads to finish their operations. -->
385 <service
386 android:name=".util.EmptyService"
387 android:exported="false" />
388
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700389 <!-- Views the details of a single contact -->
390 <activity android:name="ContactOptionsActivity"
391 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700392 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700393 <intent-filter>
394 <action android:name="android.intent.action.EDIT" />
395 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800396 </intent-filter>
397 </activity>
398
399 <!-- Attaches a photo to a contact. Started from external applications -->
400 <activity android:name="AttachImage"
401 android:label="@string/attachToContact"
402 android:taskAffinity="">
403 <intent-filter>
404 <action android:name="android.intent.action.ATTACH_DATA" />
405 <data android:mimeType="image/*" />
406 <category android:name="android.intent.category.DEFAULT" />
407 </intent-filter>
408 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700409 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800410
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800411 <!-- Makes .ContactsListActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800412 <meta-data
413 android:name="android.app.default_searchable"
414 android:value=".ContactsListActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800415
416
417 <!-- LIVE FOLDERS -->
418 <activity
419 android:name=".ContactsLiveFolders$AllContacts"
420 android:label="@string/liveFolderAll"
Romain Guy4eb77b62009-03-24 18:10:17 -0700421 android:icon="@drawable/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800422 <intent-filter>
423 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
424 <category android:name="android.intent.category.DEFAULT" />
425 </intent-filter>
426 </activity>
427
428 <activity
429 android:name=".ContactsLiveFolders$StarredContacts"
430 android:label="@string/liveFolderFavorites"
Romain Guy4eb77b62009-03-24 18:10:17 -0700431 android:icon="@drawable/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800432 <intent-filter>
433 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
434 <category android:name="android.intent.category.DEFAULT" />
435 </intent-filter>
436 </activity>
437
438 <activity
439 android:name=".ContactsLiveFolders$PhoneContacts"
440 android:label="@string/liveFolderPhone"
Romain Guy4eb77b62009-03-24 18:10:17 -0700441 android:icon="@drawable/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800442 <intent-filter>
443 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
444 <category android:name="android.intent.category.DEFAULT" />
445 </intent-filter>
446 </activity>
447
Lixin Yue24fc7632009-12-04 17:03:00 +0800448 <activity android:name=".VCardActivity"
449 android:theme="@android:style/Theme.NoTitleBar" >
450 <intent-filter>
451 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700452 <data android:mimeType="text/directory" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800453 <data android:mimeType="text/x-vcard" />
454 <category android:name="android.intent.category.DEFAULT" />
455 </intent-filter>
456 </activity>
457
Daisuke Miyakawa72c50522009-07-07 15:37:59 -0700458 <activity android:name=".ImportVCardActivity"
459 android:theme="@style/BackgroundOnly" />
460
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700461 <activity android:name=".ExportVCardActivity"
462 android:theme="@style/BackgroundOnly" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800463 </application>
464</manifest>