blob: 1e9b525b56d6fde54c2715e6bb52465b380c671c [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"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700289 android:taskAffinity="android.task.quickcontact"
290 android:windowSoftInputMode="stateUnchanged"
291 >
Jeff Sharkey3f177592009-05-18 15:23:12 -0700292
293 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700294 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700295 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700296 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Bai Taod128adc2010-03-24 08:50:35 +0800297 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700298 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800299 </activity>
300
301 <activity-alias android:name="ContactShortcut"
302 android:targetActivity="ContactsListActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700303 android:label="@string/shortcutContact"
304 android:icon="@drawable/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800305
306 <intent-filter>
307 <action android:name="android.intent.action.CREATE_SHORTCUT" />
308 <category android:name="android.intent.category.DEFAULT" />
309 </intent-filter>
310
311 </activity-alias>
312
Dianne Hackborn333a6152009-05-26 12:46:23 -0700313 <activity-alias android:name="alias.DialShortcut"
314 android:targetActivity="ContactsListActivity"
315 android:label="@string/shortcutDialContact"
Mike Cleronf143a452009-09-30 01:13:23 -0700316 android:icon="@drawable/ic_launcher_shortcut_directdial">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700317
318 <intent-filter>
319 <action android:name="android.intent.action.CREATE_SHORTCUT" />
320 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200321 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700322 </intent-filter>
323
324 </activity-alias>
325
326 <activity-alias android:name="alias.MessageShortcut"
327 android:targetActivity="ContactsListActivity"
328 android:label="@string/shortcutMessageContact"
Mike Cleronf143a452009-09-30 01:13:23 -0700329 android:icon="@drawable/ic_launcher_shortcut_directmessage">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700330
331 <intent-filter>
332 <action android:name="android.intent.action.CREATE_SHORTCUT" />
333 <category android:name="android.intent.category.DEFAULT" />
334 </intent-filter>
335
336 </activity-alias>
337
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800338 <activity android:name="CallDetailActivity"
339 android:label="@string/callDetailTitle"
Romain Guy4eb77b62009-03-24 18:10:17 -0700340 android:theme="@style/TallTitleBarTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800341 >
342 <intent-filter>
343 <action android:name="android.intent.action.VIEW" />
344 <category android:name="android.intent.category.DEFAULT" />
345 <data android:mimeType="vnd.android.cursor.item/calls" />
346 </intent-filter>
347 </activity>
348
349 <!-- Views the details of a single contact -->
350 <activity android:name="ViewContactActivity"
351 android:label="@string/viewContactTitle"
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700352 android:theme="@style/TallTitleBarTheme">
353
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800354 <intent-filter android:label="@string/viewContactDesription">
355 <action android:name="android.intent.action.VIEW" />
356 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700357 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
358 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700359 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800360 </intent-filter>
361 </activity>
362
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700363 <!-- Edit or insert details for a contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700364 <activity
365 android:name=".ui.EditContactActivity"
Evan Millar81f957d2009-10-12 15:09:21 -0700366 android:windowSoftInputMode="stateHidden|adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700367
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800368 <intent-filter android:label="@string/editContactDescription">
369 <action android:name="android.intent.action.EDIT" />
370 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700371 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700372 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Evan Millar8a79cee2009-08-19 17:20:49 -0700373 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800374 </intent-filter>
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700375
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800376 <intent-filter android:label="@string/insertContactDescription">
377 <action android:name="android.intent.action.INSERT" />
378 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700379 <data android:mimeType="vnd.android.cursor.dir/person" />
380 <data android:mimeType="vnd.android.cursor.dir/contact" />
381 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800382 </intent-filter>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700383
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800384 </activity>
385
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700386 <!-- Stub service used to keep our process alive long enough for
387 background threads to finish their operations. -->
388 <service
389 android:name=".util.EmptyService"
390 android:exported="false" />
391
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700392 <!-- Views the details of a single contact -->
393 <activity android:name="ContactOptionsActivity"
394 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700395 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700396 <intent-filter>
397 <action android:name="android.intent.action.EDIT" />
398 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800399 </intent-filter>
400 </activity>
401
402 <!-- Attaches a photo to a contact. Started from external applications -->
403 <activity android:name="AttachImage"
404 android:label="@string/attachToContact"
405 android:taskAffinity="">
406 <intent-filter>
407 <action android:name="android.intent.action.ATTACH_DATA" />
408 <data android:mimeType="image/*" />
409 <category android:name="android.intent.category.DEFAULT" />
410 </intent-filter>
411 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700412 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800413
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800414 <!-- Makes .ContactsListActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800415 <meta-data
416 android:name="android.app.default_searchable"
417 android:value=".ContactsListActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800418
419
420 <!-- LIVE FOLDERS -->
421 <activity
422 android:name=".ContactsLiveFolders$AllContacts"
423 android:label="@string/liveFolderAll"
Romain Guy4eb77b62009-03-24 18:10:17 -0700424 android:icon="@drawable/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800425 <intent-filter>
426 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
427 <category android:name="android.intent.category.DEFAULT" />
428 </intent-filter>
429 </activity>
430
431 <activity
432 android:name=".ContactsLiveFolders$StarredContacts"
433 android:label="@string/liveFolderFavorites"
Romain Guy4eb77b62009-03-24 18:10:17 -0700434 android:icon="@drawable/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800435 <intent-filter>
436 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
437 <category android:name="android.intent.category.DEFAULT" />
438 </intent-filter>
439 </activity>
440
441 <activity
442 android:name=".ContactsLiveFolders$PhoneContacts"
443 android:label="@string/liveFolderPhone"
Romain Guy4eb77b62009-03-24 18:10:17 -0700444 android:icon="@drawable/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800445 <intent-filter>
446 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
447 <category android:name="android.intent.category.DEFAULT" />
448 </intent-filter>
449 </activity>
450
Lixin Yue24fc7632009-12-04 17:03:00 +0800451 <activity android:name=".VCardActivity"
452 android:theme="@android:style/Theme.NoTitleBar" >
453 <intent-filter>
454 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700455 <data android:mimeType="text/directory" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800456 <data android:mimeType="text/x-vcard" />
457 <category android:name="android.intent.category.DEFAULT" />
458 </intent-filter>
459 </activity>
460
Daisuke Miyakawa72c50522009-07-07 15:37:59 -0700461 <activity android:name=".ImportVCardActivity"
462 android:theme="@style/BackgroundOnly" />
463
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700464 <activity android:name=".ExportVCardActivity"
465 android:theme="@style/BackgroundOnly" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800466 </application>
467</manifest>