blob: 7d88e8fc43e418a8e3263f378d61a641c648f592 [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
Bai Taodf5e05f2010-04-09 00:44:44 +0800227 <intent-filter>
228 <action android:name="com.android.contacts.action.GET_MULTIPLE_PHONES" />
229 <category android:name="android.intent.category.DEFAULT" />
230 <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" />
231 </intent-filter>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700232 </activity>
233
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700234 <!-- An activity for joining contacts -->
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700235 <activity android:name="JoinContactActivity"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700236 android:theme="@style/TallTitleBarTheme"
237 android:clearTaskOnLaunch="true"
238 >
239 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700240 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700241 <category android:name="android.intent.category.DEFAULT" />
242 </intent-filter>
243 </activity>
244
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800245 <!-- The contacts search/filter UI -->
Dmitri Plotnikov3ef3b1d2010-04-20 15:45:56 -0700246 <activity android:name="ContactsSearchActivity"
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800247 android:theme="@style/ContactsSearchTheme"
248 android:windowSoftInputMode="stateAlwaysVisible|adjustPan"
249 >
250 <intent-filter>
251 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
252 <category android:name="android.intent.category.DEFAULT" />
253 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
254 </intent-filter>
255 </activity>
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700256
Dmitri Plotnikov207d4f62010-03-23 16:38:29 -0700257 <!-- The contacts search/filter UI -->
258 <activity android:name="SearchResultsActivity"
259 android:theme="@style/TallTitleBarTheme"
260 android:label="@string/contactsList"
261 >
262 <intent-filter>
263 <action android:name="android.intent.action.SEARCH" />
264 <category android:name="android.intent.category.DEFAULT" />
265 </intent-filter>
266
267 <meta-data android:name="android.app.searchable"
268 android:resource="@xml/searchable"
269 />
270 </activity>
271
Jeff Sharkeye8971622009-09-17 15:42:36 -0700272 <!-- Used to select display and sync groups -->
Dmitri Plotnikov1ea45f22010-02-04 17:17:44 -0800273 <activity android:name=".ui.ContactsPreferencesActivity" android:label="@string/displayGroups" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700274
Jeff Sharkey802b2052009-08-04 14:21:06 -0700275 <activity
Jeff Sharkeye8971622009-09-17 15:42:36 -0700276 android:name=".ui.ShowOrCreateActivity"
277 android:theme="@style/FullyTranslucent">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700278
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700279 <intent-filter>
280 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700281 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700282 <data android:scheme="mailto" />
283 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700284 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700285 </activity>
286
Evan Millar0d0ab342009-09-30 19:03:35 -0700287 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700288 temporary hack until we add better framework support. -->
289 <activity
Evan Millar0d0ab342009-09-30 19:03:35 -0700290 android:name=".ui.QuickContactActivity"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700291 android:theme="@style/FullyTranslucent.QuickContact"
292 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700293 android:excludeFromRecents="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700294 android:taskAffinity="android.task.quickcontact"
295 android:windowSoftInputMode="stateUnchanged"
296 >
Jeff Sharkey3f177592009-05-18 15:23:12 -0700297
298 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700299 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700300 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700301 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Bai Taod128adc2010-03-24 08:50:35 +0800302 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700303 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800304 </activity>
305
306 <activity-alias android:name="ContactShortcut"
307 android:targetActivity="ContactsListActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700308 android:label="@string/shortcutContact"
309 android:icon="@drawable/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800310
311 <intent-filter>
312 <action android:name="android.intent.action.CREATE_SHORTCUT" />
313 <category android:name="android.intent.category.DEFAULT" />
314 </intent-filter>
315
316 </activity-alias>
317
Dianne Hackborn333a6152009-05-26 12:46:23 -0700318 <activity-alias android:name="alias.DialShortcut"
319 android:targetActivity="ContactsListActivity"
320 android:label="@string/shortcutDialContact"
Mike Cleronf143a452009-09-30 01:13:23 -0700321 android:icon="@drawable/ic_launcher_shortcut_directdial">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700322
323 <intent-filter>
324 <action android:name="android.intent.action.CREATE_SHORTCUT" />
325 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200326 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700327 </intent-filter>
328
329 </activity-alias>
330
331 <activity-alias android:name="alias.MessageShortcut"
332 android:targetActivity="ContactsListActivity"
333 android:label="@string/shortcutMessageContact"
Mike Cleronf143a452009-09-30 01:13:23 -0700334 android:icon="@drawable/ic_launcher_shortcut_directmessage">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700335
336 <intent-filter>
337 <action android:name="android.intent.action.CREATE_SHORTCUT" />
338 <category android:name="android.intent.category.DEFAULT" />
339 </intent-filter>
340
341 </activity-alias>
342
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800343 <activity android:name="CallDetailActivity"
344 android:label="@string/callDetailTitle"
Romain Guy4eb77b62009-03-24 18:10:17 -0700345 android:theme="@style/TallTitleBarTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800346 >
347 <intent-filter>
348 <action android:name="android.intent.action.VIEW" />
349 <category android:name="android.intent.category.DEFAULT" />
350 <data android:mimeType="vnd.android.cursor.item/calls" />
351 </intent-filter>
352 </activity>
353
354 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700355 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800356 android:label="@string/viewContactTitle"
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700357 android:theme="@style/TallTitleBarTheme">
358
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800359 <intent-filter android:label="@string/viewContactDesription">
360 <action android:name="android.intent.action.VIEW" />
361 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700362 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
363 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700364 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800365 </intent-filter>
366 </activity>
367
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700368 <!-- Edit or insert details for a contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700369 <activity
370 android:name=".ui.EditContactActivity"
Evan Millar81f957d2009-10-12 15:09:21 -0700371 android:windowSoftInputMode="stateHidden|adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700372
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800373 <intent-filter android:label="@string/editContactDescription">
374 <action android:name="android.intent.action.EDIT" />
375 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700376 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700377 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Evan Millar8a79cee2009-08-19 17:20:49 -0700378 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800379 </intent-filter>
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700380
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800381 <intent-filter android:label="@string/insertContactDescription">
382 <action android:name="android.intent.action.INSERT" />
383 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700384 <data android:mimeType="vnd.android.cursor.dir/person" />
385 <data android:mimeType="vnd.android.cursor.dir/contact" />
386 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800387 </intent-filter>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700388
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800389 </activity>
390
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700391 <!-- Stub service used to keep our process alive long enough for
392 background threads to finish their operations. -->
393 <service
394 android:name=".util.EmptyService"
395 android:exported="false" />
396
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700397 <!-- Views the details of a single contact -->
398 <activity android:name="ContactOptionsActivity"
399 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700400 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700401 <intent-filter>
402 <action android:name="android.intent.action.EDIT" />
403 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800404 </intent-filter>
405 </activity>
406
407 <!-- Attaches a photo to a contact. Started from external applications -->
408 <activity android:name="AttachImage"
409 android:label="@string/attachToContact"
410 android:taskAffinity="">
411 <intent-filter>
412 <action android:name="android.intent.action.ATTACH_DATA" />
413 <data android:mimeType="image/*" />
414 <category android:name="android.intent.category.DEFAULT" />
415 </intent-filter>
416 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700417 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800418
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800419 <!-- Makes .ContactsListActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800420 <meta-data
421 android:name="android.app.default_searchable"
422 android:value=".ContactsListActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800423
424
425 <!-- LIVE FOLDERS -->
426 <activity
427 android:name=".ContactsLiveFolders$AllContacts"
428 android:label="@string/liveFolderAll"
Romain Guy4eb77b62009-03-24 18:10:17 -0700429 android:icon="@drawable/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800430 <intent-filter>
431 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
432 <category android:name="android.intent.category.DEFAULT" />
433 </intent-filter>
434 </activity>
435
436 <activity
437 android:name=".ContactsLiveFolders$StarredContacts"
438 android:label="@string/liveFolderFavorites"
Romain Guy4eb77b62009-03-24 18:10:17 -0700439 android:icon="@drawable/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800440 <intent-filter>
441 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
442 <category android:name="android.intent.category.DEFAULT" />
443 </intent-filter>
444 </activity>
445
446 <activity
447 android:name=".ContactsLiveFolders$PhoneContacts"
448 android:label="@string/liveFolderPhone"
Romain Guy4eb77b62009-03-24 18:10:17 -0700449 android:icon="@drawable/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800450 <intent-filter>
451 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
452 <category android:name="android.intent.category.DEFAULT" />
453 </intent-filter>
454 </activity>
455
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900456 <activity android:name=".ImportVCardActivity"
457 android:theme="@style/BackgroundOnly">
458 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800459 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700460 <data android:mimeType="text/directory" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800461 <data android:mimeType="text/x-vcard" />
462 <category android:name="android.intent.category.DEFAULT" />
463 </intent-filter>
464 </activity>
465
Daisuke Miyakawaf21bf272010-04-13 20:33:53 +0900466 <service
467 android:name=".ImportVCardService"
468 android:exported="false" />
469
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700470 <activity android:name=".ExportVCardActivity"
471 android:theme="@style/BackgroundOnly" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800472 </application>
473</manifest>