blob: 23fe067a58b2b8104d047524886f4c454288e7a4 [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>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700226 </activity>
227
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700228 <!-- An activity for joining contacts -->
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700229 <activity android:name="JoinContactActivity"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700230 android:theme="@style/TallTitleBarTheme"
231 android:clearTaskOnLaunch="true"
232 >
233 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700234 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700235 <category android:name="android.intent.category.DEFAULT" />
236 </intent-filter>
237 </activity>
238
Dmitri Plotnikove8ae9ac2010-04-21 13:37:15 -0700239 <!-- An activity for selecting multiple phone numbers -->
240 <activity android:name="MultiplePhonePickerActivity">
241 <intent-filter>
242 <action android:name="com.android.contacts.action.GET_MULTIPLE_PHONES" />
243 <category android:name="android.intent.category.DEFAULT" />
244 <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" />
245 </intent-filter>
246 </activity>
247
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800248 <!-- The contacts search/filter UI -->
Dmitri Plotnikov3ef3b1d2010-04-20 15:45:56 -0700249 <activity android:name="ContactsSearchActivity"
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800250 android:theme="@style/ContactsSearchTheme"
251 android:windowSoftInputMode="stateAlwaysVisible|adjustPan"
252 >
253 <intent-filter>
254 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
255 <category android:name="android.intent.category.DEFAULT" />
256 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
257 </intent-filter>
258 </activity>
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700259
Dmitri Plotnikov207d4f62010-03-23 16:38:29 -0700260 <!-- The contacts search/filter UI -->
261 <activity android:name="SearchResultsActivity"
262 android:theme="@style/TallTitleBarTheme"
263 android:label="@string/contactsList"
264 >
265 <intent-filter>
266 <action android:name="android.intent.action.SEARCH" />
267 <category android:name="android.intent.category.DEFAULT" />
268 </intent-filter>
269
270 <meta-data android:name="android.app.searchable"
271 android:resource="@xml/searchable"
272 />
273 </activity>
274
Jeff Sharkeye8971622009-09-17 15:42:36 -0700275 <!-- Used to select display and sync groups -->
Dmitri Plotnikov1ea45f22010-02-04 17:17:44 -0800276 <activity android:name=".ui.ContactsPreferencesActivity" android:label="@string/displayGroups" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700277
Jeff Sharkey802b2052009-08-04 14:21:06 -0700278 <activity
Jeff Sharkeye8971622009-09-17 15:42:36 -0700279 android:name=".ui.ShowOrCreateActivity"
280 android:theme="@style/FullyTranslucent">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700281
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700282 <intent-filter>
283 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700284 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700285 <data android:scheme="mailto" />
286 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700287 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700288 </activity>
289
Evan Millar0d0ab342009-09-30 19:03:35 -0700290 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700291 temporary hack until we add better framework support. -->
292 <activity
Evan Millar0d0ab342009-09-30 19:03:35 -0700293 android:name=".ui.QuickContactActivity"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700294 android:theme="@style/FullyTranslucent.QuickContact"
295 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700296 android:excludeFromRecents="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700297 android:taskAffinity="android.task.quickcontact"
298 android:windowSoftInputMode="stateUnchanged"
299 >
Jeff Sharkey3f177592009-05-18 15:23:12 -0700300
301 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700302 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700303 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700304 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Bai Taod128adc2010-03-24 08:50:35 +0800305 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700306 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800307 </activity>
308
309 <activity-alias android:name="ContactShortcut"
310 android:targetActivity="ContactsListActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700311 android:label="@string/shortcutContact"
312 android:icon="@drawable/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800313
314 <intent-filter>
315 <action android:name="android.intent.action.CREATE_SHORTCUT" />
316 <category android:name="android.intent.category.DEFAULT" />
317 </intent-filter>
318
319 </activity-alias>
320
Dianne Hackborn333a6152009-05-26 12:46:23 -0700321 <activity-alias android:name="alias.DialShortcut"
322 android:targetActivity="ContactsListActivity"
323 android:label="@string/shortcutDialContact"
Mike Cleronf143a452009-09-30 01:13:23 -0700324 android:icon="@drawable/ic_launcher_shortcut_directdial">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700325
326 <intent-filter>
327 <action android:name="android.intent.action.CREATE_SHORTCUT" />
328 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200329 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700330 </intent-filter>
331
332 </activity-alias>
333
334 <activity-alias android:name="alias.MessageShortcut"
335 android:targetActivity="ContactsListActivity"
336 android:label="@string/shortcutMessageContact"
Mike Cleronf143a452009-09-30 01:13:23 -0700337 android:icon="@drawable/ic_launcher_shortcut_directmessage">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700338
339 <intent-filter>
340 <action android:name="android.intent.action.CREATE_SHORTCUT" />
341 <category android:name="android.intent.category.DEFAULT" />
342 </intent-filter>
343
344 </activity-alias>
345
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800346 <activity android:name="CallDetailActivity"
347 android:label="@string/callDetailTitle"
Romain Guy4eb77b62009-03-24 18:10:17 -0700348 android:theme="@style/TallTitleBarTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800349 >
350 <intent-filter>
351 <action android:name="android.intent.action.VIEW" />
352 <category android:name="android.intent.category.DEFAULT" />
353 <data android:mimeType="vnd.android.cursor.item/calls" />
354 </intent-filter>
355 </activity>
356
357 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700358 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800359 android:label="@string/viewContactTitle"
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700360 android:theme="@style/TallTitleBarTheme">
361
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800362 <intent-filter android:label="@string/viewContactDesription">
363 <action android:name="android.intent.action.VIEW" />
364 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700365 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
366 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700367 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800368 </intent-filter>
369 </activity>
370
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700371 <!-- Edit or insert details for a contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700372 <activity
373 android:name=".ui.EditContactActivity"
Evan Millar81f957d2009-10-12 15:09:21 -0700374 android:windowSoftInputMode="stateHidden|adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700375
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800376 <intent-filter android:label="@string/editContactDescription">
377 <action android:name="android.intent.action.EDIT" />
378 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700379 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700380 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Evan Millar8a79cee2009-08-19 17:20:49 -0700381 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800382 </intent-filter>
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700383
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800384 <intent-filter android:label="@string/insertContactDescription">
385 <action android:name="android.intent.action.INSERT" />
386 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700387 <data android:mimeType="vnd.android.cursor.dir/person" />
388 <data android:mimeType="vnd.android.cursor.dir/contact" />
389 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800390 </intent-filter>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700391
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800392 </activity>
393
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700394 <!-- Stub service used to keep our process alive long enough for
395 background threads to finish their operations. -->
396 <service
397 android:name=".util.EmptyService"
398 android:exported="false" />
399
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700400 <!-- Views the details of a single contact -->
401 <activity android:name="ContactOptionsActivity"
402 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700403 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700404 <intent-filter>
405 <action android:name="android.intent.action.EDIT" />
406 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800407 </intent-filter>
408 </activity>
409
410 <!-- Attaches a photo to a contact. Started from external applications -->
411 <activity android:name="AttachImage"
412 android:label="@string/attachToContact"
413 android:taskAffinity="">
414 <intent-filter>
415 <action android:name="android.intent.action.ATTACH_DATA" />
416 <data android:mimeType="image/*" />
417 <category android:name="android.intent.category.DEFAULT" />
418 </intent-filter>
419 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700420 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800421
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800422 <!-- Makes .ContactsListActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800423 <meta-data
424 android:name="android.app.default_searchable"
425 android:value=".ContactsListActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800426
427
428 <!-- LIVE FOLDERS -->
429 <activity
430 android:name=".ContactsLiveFolders$AllContacts"
431 android:label="@string/liveFolderAll"
Romain Guy4eb77b62009-03-24 18:10:17 -0700432 android:icon="@drawable/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800433 <intent-filter>
434 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
435 <category android:name="android.intent.category.DEFAULT" />
436 </intent-filter>
437 </activity>
438
439 <activity
440 android:name=".ContactsLiveFolders$StarredContacts"
441 android:label="@string/liveFolderFavorites"
Romain Guy4eb77b62009-03-24 18:10:17 -0700442 android:icon="@drawable/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800443 <intent-filter>
444 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
445 <category android:name="android.intent.category.DEFAULT" />
446 </intent-filter>
447 </activity>
448
449 <activity
450 android:name=".ContactsLiveFolders$PhoneContacts"
451 android:label="@string/liveFolderPhone"
Romain Guy4eb77b62009-03-24 18:10:17 -0700452 android:icon="@drawable/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800453 <intent-filter>
454 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
455 <category android:name="android.intent.category.DEFAULT" />
456 </intent-filter>
457 </activity>
458
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900459 <activity android:name=".ImportVCardActivity"
460 android:theme="@style/BackgroundOnly">
461 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800462 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700463 <data android:mimeType="text/directory" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800464 <data android:mimeType="text/x-vcard" />
465 <category android:name="android.intent.category.DEFAULT" />
466 </intent-filter>
467 </activity>
468
Daisuke Miyakawaf21bf272010-04-13 20:33:53 +0900469 <service
470 android:name=".ImportVCardService"
471 android:exported="false" />
472
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700473 <activity android:name=".ExportVCardActivity"
474 android:theme="@style/BackgroundOnly" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800475 </application>
476</manifest>