blob: c5811ecf21a21c57de45aecff742771e1412237b [file] [log] [blame]
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2006 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
Neel Parekhbe406ff2009-09-16 15:31:22 -07007
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08008 http://www.apache.org/licenses/LICENSE-2.0
Neel Parekhbe406ff2009-09-16 15:31:22 -07009
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080010 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Jeff Sharkey26c7e732009-04-01 17:30:46 -070018 package="com.android.contacts"
19 android:sharedUserId="android.uid.shared"
Dianne Hackborn15a5ad82010-06-22 16:09:43 -070020 android:sharedUserLabel="@string/sharedUserLabel"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080021>
Jeff Sharkey26c7e732009-04-01 17:30:46 -070022
Jeff Hamiltone7883532010-02-11 16:25:48 -060023 <original-package android:name="com.android.contacts" />
24
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080025 <uses-permission android:name="android.permission.CALL_PRIVILEGED" />
26 <uses-permission android:name="android.permission.READ_CONTACTS" />
27 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
28 <uses-permission android:name="android.permission.INTERNET" />
29 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
30 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
31 <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" />
Daisuke Miyakawa2991dd92009-05-19 08:32:17 +090032 <uses-permission android:name="android.permission.WAKE_LOCK" />
Daisuke Miyakawa72c50522009-07-07 15:37:59 -070033 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Dmitri Plotnikovdaa2d5c2010-01-29 17:44:20 -080034 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Fred Quintana104b7922009-07-22 20:01:15 -070035 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
Nicolas Catania9bcf4702009-11-06 13:19:43 -080036 <uses-permission android:name="android.permission.VIBRATE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080037
38 <application
39 android:label="@string/contactsList"
40 android:icon="@drawable/ic_launcher_contacts"
41 android:process="android.process.acore"
42 android:taskAffinity="android.task.contacts"
43 >
44
45 <!-- A virtual 12 key dialer -->
46 <activity android:name="TwelveKeyDialer"
47 android:launchMode="singleTop"
48 >
49 <intent-filter>
50 <action android:name="com.android.phone.action.TOUCH_DIALER" />
51 <category android:name="android.intent.category.DEFAULT" />
52 <category android:name="android.intent.category.TAB" />
53 </intent-filter>
54 </activity>
55
56 <!-- A list of recent calls -->
57 <activity android:name="RecentCallsListActivity"
58 android:label="@string/recentCallsIconLabel"
59 >
60 <intent-filter>
61 <action android:name="com.android.phone.action.RECENT_CALLS" />
62 <category android:name="android.intent.category.DEFAULT" />
63 <category android:name="android.intent.category.TAB" />
64 </intent-filter>
65 </activity>
66
Daniel Lehmann7675e122010-04-21 17:31:11 -070067 <!-- Tab container for all tabs -->
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080068 <activity android:name="DialtactsActivity"
69 android:label="@string/launcherDialer"
Nicolas Catania177d88f2009-09-27 15:15:05 -070070 android:theme="@style/DialtactsTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080071 android:launchMode="singleTask"
72 android:clearTaskOnLaunch="true"
73 android:icon="@drawable/ic_launcher_phone"
74 android:screenOrientation="nosensor"
75 >
76 <intent-filter>
77 <action android:name="android.intent.action.DIAL" />
78 <category android:name="android.intent.category.DEFAULT" />
79 <category android:name="android.intent.category.BROWSABLE" />
80 <data android:mimeType="vnd.android.cursor.item/phone" />
81 <data android:mimeType="vnd.android.cursor.item/person" />
82 </intent-filter>
83 <intent-filter>
84 <action android:name="android.intent.action.DIAL" />
85 <category android:name="android.intent.category.DEFAULT" />
86 <category android:name="android.intent.category.BROWSABLE" />
87 <data android:scheme="voicemail" />
88 </intent-filter>
89 <intent-filter>
90 <action android:name="android.intent.action.DIAL" />
91 <category android:name="android.intent.category.DEFAULT" />
92 </intent-filter>
93 <intent-filter>
94 <action android:name="android.intent.action.MAIN" />
95 <category android:name="android.intent.category.DEFAULT" />
96 <category android:name="android.intent.category.LAUNCHER" />
97 <category android:name="android.intent.category.BROWSABLE" />
98 </intent-filter>
99 <intent-filter>
100 <action android:name="android.intent.action.VIEW" />
101 <action android:name="android.intent.action.DIAL" />
102 <category android:name="android.intent.category.DEFAULT" />
103 <category android:name="android.intent.category.BROWSABLE" />
104 <data android:scheme="tel" />
105 </intent-filter>
106 <intent-filter>
107 <action android:name="android.intent.action.VIEW" />
108 <category android:name="android.intent.category.DEFAULT" />
109 <category android:name="android.intent.category.BROWSABLE" />
110 <data android:mimeType="vnd.android.cursor.dir/calls" />
111 </intent-filter>
112 <intent-filter>
113 <action android:name="android.intent.action.CALL_BUTTON" />
114 <category android:name="android.intent.category.DEFAULT" />
115 <category android:name="android.intent.category.BROWSABLE" />
116 </intent-filter>
117 </activity>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700118
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500119 <!-- Front door proxy that picks the right UI based on the screen config -->
120 <activity android:name=".activities.ContactsFrontDoor"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800121 android:label="@string/contactsList"
122 android:icon="@drawable/ic_launcher_contacts"
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500123 android:theme="@android:style/Theme.NoTitleBar"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800124 >
125 <intent-filter>
126 <action android:name="android.intent.action.MAIN" />
127 <category android:name="android.intent.category.DEFAULT" />
128 <category android:name="android.intent.category.LAUNCHER" />
Dmitri Plotnikov032bb362009-05-06 17:05:39 -0700129 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800130 </intent-filter>
131
132 <intent-filter>
133 <action android:name="android.intent.action.VIEW" />
134 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey2428f622009-09-13 01:08:43 -0700135 <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" />
136 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800137 </intent-filter>
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500138 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800139
Daniel Lehmann7675e122010-04-21 17:31:11 -0700140 <!-- Main launch Intent to open the Contacts app. This will open the app in its last manual
141 state. This is the state that has been explicitly set by the user (e.g. by clicking a tab).
142 States configured via other Intents (e.g. CallLog after Call) are not considered manual
143 state. At the moment, the Intent always goes to the DialtactsActivity, but this might later
144 be changed to also include sub-activities like Edit or View if they were left open -->
145
146 <activity-alias android:name="ContactsLaunchActivity"
147 android:targetActivity="DialtactsActivity"
148 >
149 <intent-filter>
150 <action android:name="android.intent.action.MAIN" />
151 <category android:name="android.intent.category.DEFAULT" />
152 <category android:name="android.intent.category.BROWSABLE" />
153 </intent-filter>
154 </activity-alias>
155
The Android Open Source Project1f620962009-03-09 11:52:14 -0700156 <!-- An empty activity that presents the DialtactActivity's Favorites tab -->
157 <activity-alias android:name="DialtactsFavoritesEntryActivity"
158 android:targetActivity="DialtactsActivity"
The Android Open Source Project1f620962009-03-09 11:52:14 -0700159 >
160 <intent-filter>
161 <action android:name="android.intent.action.MAIN" />
162 <category android:name="android.intent.category.DEFAULT" />
163 </intent-filter>
164 </activity-alias>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700165
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700166 <!-- The actual list of contacts -->
167 <activity android:name=".activities.ContactListActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800168 android:label="@string/contactsList"
169 android:clearTaskOnLaunch="true"
Dmitri Plotnikov424440b2010-07-01 14:48:44 -0700170 android:theme="@android:style/Theme.NoTitleBar"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800171 >
172 <intent-filter>
173 <action android:name="com.android.contacts.action.LIST_DEFAULT" />
174 <category android:name="android.intent.category.DEFAULT" />
175 <category android:name="android.intent.category.TAB" />
176 </intent-filter>
177
178 <intent-filter>
179 <action android:name="com.android.contacts.action.LIST_CONTACTS" />
180 <category android:name="android.intent.category.DEFAULT" />
181 <category android:name="android.intent.category.TAB" />
182 </intent-filter>
183
184 <intent-filter>
185 <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" />
186 <category android:name="android.intent.category.DEFAULT" />
187 <category android:name="android.intent.category.TAB" />
188 </intent-filter>
189
190 <intent-filter>
191 <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" />
192 <category android:name="android.intent.category.DEFAULT" />
193 <category android:name="android.intent.category.TAB" />
194 </intent-filter>
195
196 <intent-filter android:label="@string/starredList">
197 <action android:name="com.android.contacts.action.LIST_STARRED" />
198 <category android:name="android.intent.category.DEFAULT" />
199 <category android:name="android.intent.category.TAB" />
200 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700201
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800202 <intent-filter android:label="@string/frequentList">
203 <action android:name="com.android.contacts.action.LIST_FREQUENT" />
204 <category android:name="android.intent.category.DEFAULT" />
205 <category android:name="android.intent.category.TAB" />
206 </intent-filter>
207
208 <intent-filter android:label="@string/strequentList">
209 <action android:name="com.android.contacts.action.LIST_STREQUENT" />
210 <category android:name="android.intent.category.DEFAULT" />
211 <category android:name="android.intent.category.TAB" />
212 </intent-filter>
213
214 <intent-filter>
215 <action android:name="android.intent.action.INSERT_OR_EDIT" />
216 <category android:name="android.intent.category.DEFAULT" />
217 <data android:mimeType="vnd.android.cursor.item/person" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700218 <data android:mimeType="vnd.android.cursor.item/contact" />
219 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800220 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700221
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800222 <intent-filter>
223 <action android:name="android.intent.action.PICK" />
224 <category android:name="android.intent.category.DEFAULT" />
Evan Millarc2d862e2009-08-31 12:52:39 -0700225 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
226 <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" />
227 <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" />
228 <data android:mimeType="vnd.android.cursor.dir/phone" android:host="contacts" />
229 <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" android:host="com.android.contacts" />
230 <data android:mimeType="vnd.android.cursor.dir/postal-address" android:host="contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800231 </intent-filter>
232
233 <intent-filter>
234 <action android:name="android.intent.action.GET_CONTENT" />
235 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov631c1ff2009-09-03 16:57:30 -0700236 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
237 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
238 <data android:mimeType="vnd.android.cursor.item/phone_v2" android:host="com.android.contacts" />
239 <data android:mimeType="vnd.android.cursor.item/phone" android:host="contacts" />
240 <data android:mimeType="vnd.android.cursor.item/postal-address_v2" android:host="com.android.contacts" />
241 <data android:mimeType="vnd.android.cursor.item/postal-address" android:host="contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800242 </intent-filter>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700243 </activity>
244
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700245 <!-- Backwards compatibility: somebody may have hard coded this activity name -->
246 <activity-alias android:name="ContactsListActivity"
247 android:targetActivity=".activities.ContactListActivity"
248 />
249
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700250 <!-- An activity for joining contacts -->
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700251 <activity android:name="JoinContactActivity"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700252 android:theme="@style/TallTitleBarTheme"
253 android:clearTaskOnLaunch="true"
254 >
255 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700256 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700257 <category android:name="android.intent.category.DEFAULT" />
258 </intent-filter>
259 </activity>
260
Dmitri Plotnikove8ae9ac2010-04-21 13:37:15 -0700261 <!-- An activity for selecting multiple phone numbers -->
262 <activity android:name="MultiplePhonePickerActivity">
263 <intent-filter>
264 <action android:name="com.android.contacts.action.GET_MULTIPLE_PHONES" />
265 <category android:name="android.intent.category.DEFAULT" />
266 <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" />
267 </intent-filter>
268 </activity>
269
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800270 <!-- The contacts search/filter UI -->
Dmitri Plotnikov3ef3b1d2010-04-20 15:45:56 -0700271 <activity android:name="ContactsSearchActivity"
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800272 android:theme="@style/ContactsSearchTheme"
Dmitri Plotnikovd5061fe2010-06-07 15:06:58 -0700273 android:windowSoftInputMode="stateAlwaysVisible"
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800274 >
275 <intent-filter>
276 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
277 <category android:name="android.intent.category.DEFAULT" />
278 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
279 </intent-filter>
Dmitri Plotnikov4cc85dd2010-06-29 13:15:26 -0700280
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800281 </activity>
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700282
Dmitri Plotnikov207d4f62010-03-23 16:38:29 -0700283 <!-- The contacts search/filter UI -->
Dmitri Plotnikov4cc85dd2010-06-29 13:15:26 -0700284 <activity-alias android:name="SearchResultsActivity"
285 android:targetActivity="ContactsSearchActivity"
Dmitri Plotnikov207d4f62010-03-23 16:38:29 -0700286 >
287 <intent-filter>
288 <action android:name="android.intent.action.SEARCH" />
289 <category android:name="android.intent.category.DEFAULT" />
290 </intent-filter>
291
292 <meta-data android:name="android.app.searchable"
293 android:resource="@xml/searchable"
294 />
Dmitri Plotnikov4cc85dd2010-06-29 13:15:26 -0700295 </activity-alias>
Dmitri Plotnikov207d4f62010-03-23 16:38:29 -0700296
Jeff Sharkeye8971622009-09-17 15:42:36 -0700297 <!-- Used to select display and sync groups -->
Dmitri Plotnikov1ea45f22010-02-04 17:17:44 -0800298 <activity android:name=".ui.ContactsPreferencesActivity" android:label="@string/displayGroups" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700299
Jeff Sharkey802b2052009-08-04 14:21:06 -0700300 <activity
Jeff Sharkeye8971622009-09-17 15:42:36 -0700301 android:name=".ui.ShowOrCreateActivity"
302 android:theme="@style/FullyTranslucent">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700303
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700304 <intent-filter>
305 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700306 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700307 <data android:scheme="mailto" />
308 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700309 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700310 </activity>
311
Evan Millar0d0ab342009-09-30 19:03:35 -0700312 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700313 temporary hack until we add better framework support. -->
314 <activity
Evan Millar0d0ab342009-09-30 19:03:35 -0700315 android:name=".ui.QuickContactActivity"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700316 android:theme="@style/FullyTranslucent.QuickContact"
317 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700318 android:excludeFromRecents="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700319 android:taskAffinity="android.task.quickcontact"
320 android:windowSoftInputMode="stateUnchanged"
321 >
Jeff Sharkey3f177592009-05-18 15:23:12 -0700322
323 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700324 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700325 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700326 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Bai Taod128adc2010-03-24 08:50:35 +0800327 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700328 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800329 </activity>
330
331 <activity-alias android:name="ContactShortcut"
332 android:targetActivity="ContactsListActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700333 android:label="@string/shortcutContact"
334 android:icon="@drawable/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800335
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
Dianne Hackborn333a6152009-05-26 12:46:23 -0700343 <activity-alias android:name="alias.DialShortcut"
344 android:targetActivity="ContactsListActivity"
345 android:label="@string/shortcutDialContact"
Mike Cleronf143a452009-09-30 01:13:23 -0700346 android:icon="@drawable/ic_launcher_shortcut_directdial">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700347
348 <intent-filter>
349 <action android:name="android.intent.action.CREATE_SHORTCUT" />
350 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200351 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700352 </intent-filter>
353
354 </activity-alias>
355
356 <activity-alias android:name="alias.MessageShortcut"
357 android:targetActivity="ContactsListActivity"
358 android:label="@string/shortcutMessageContact"
Mike Cleronf143a452009-09-30 01:13:23 -0700359 android:icon="@drawable/ic_launcher_shortcut_directmessage">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700360
361 <intent-filter>
362 <action android:name="android.intent.action.CREATE_SHORTCUT" />
363 <category android:name="android.intent.category.DEFAULT" />
364 </intent-filter>
365
366 </activity-alias>
367
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800368 <activity android:name="CallDetailActivity"
369 android:label="@string/callDetailTitle"
Romain Guy4eb77b62009-03-24 18:10:17 -0700370 android:theme="@style/TallTitleBarTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800371 >
372 <intent-filter>
373 <action android:name="android.intent.action.VIEW" />
374 <category android:name="android.intent.category.DEFAULT" />
375 <data android:mimeType="vnd.android.cursor.item/calls" />
376 </intent-filter>
377 </activity>
378
379 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700380 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800381 android:label="@string/viewContactTitle"
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700382 android:theme="@style/TallTitleBarTheme">
383
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800384 <intent-filter android:label="@string/viewContactDesription">
385 <action android:name="android.intent.action.VIEW" />
386 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700387 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
388 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700389 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800390 </intent-filter>
391 </activity>
392
Daniel Lehmannf319cf82010-06-25 17:41:13 -0700393 <!-- Create a new or edit an existing contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700394 <activity
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700395 android:name=".activities.ContactEditorActivity"
Daniel Lehmann3a120772010-06-21 16:21:35 -0700396 android:theme="@style/TallTitleBarTheme"
397 android:windowSoftInputMode="adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700398
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800399 <intent-filter android:label="@string/editContactDescription">
400 <action android:name="android.intent.action.EDIT" />
401 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700402 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700403 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Evan Millar8a79cee2009-08-19 17:20:49 -0700404 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800405 </intent-filter>
406 <intent-filter android:label="@string/insertContactDescription">
407 <action android:name="android.intent.action.INSERT" />
408 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700409 <data android:mimeType="vnd.android.cursor.dir/person" />
410 <data android:mimeType="vnd.android.cursor.dir/contact" />
411 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800412 </intent-filter>
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700413 </activity>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700414
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700415 <!-- Stub service used to keep our process alive long enough for
416 background threads to finish their operations. -->
417 <service
418 android:name=".util.EmptyService"
419 android:exported="false" />
420
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700421 <!-- Service to save a contact -->
422 <service
423 android:name=".views.ContactSaveService"
424 android:exported="false" />
425
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700426 <!-- Views the details of a single contact -->
427 <activity android:name="ContactOptionsActivity"
428 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700429 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700430 <intent-filter>
431 <action android:name="android.intent.action.EDIT" />
432 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800433 </intent-filter>
434 </activity>
435
436 <!-- Attaches a photo to a contact. Started from external applications -->
437 <activity android:name="AttachImage"
438 android:label="@string/attachToContact"
439 android:taskAffinity="">
440 <intent-filter>
441 <action android:name="android.intent.action.ATTACH_DATA" />
442 <data android:mimeType="image/*" />
443 <category android:name="android.intent.category.DEFAULT" />
444 </intent-filter>
445 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700446 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800447
Dmitri Plotnikov884e3932010-05-13 19:13:51 -0700448 <!-- Interstitial activity that shows a phone disambig dialog -->
449 <activity android:name="CallContactActivity"
450 android:theme="@android:style/Theme.Translucent">
451 </activity>
452
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800453 <!-- Makes .ContactsListActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800454 <meta-data
455 android:name="android.app.default_searchable"
456 android:value=".ContactsListActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800457
458
459 <!-- LIVE FOLDERS -->
460 <activity
461 android:name=".ContactsLiveFolders$AllContacts"
462 android:label="@string/liveFolderAll"
Romain Guy4eb77b62009-03-24 18:10:17 -0700463 android:icon="@drawable/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800464 <intent-filter>
465 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
466 <category android:name="android.intent.category.DEFAULT" />
467 </intent-filter>
468 </activity>
469
470 <activity
471 android:name=".ContactsLiveFolders$StarredContacts"
472 android:label="@string/liveFolderFavorites"
Romain Guy4eb77b62009-03-24 18:10:17 -0700473 android:icon="@drawable/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800474 <intent-filter>
475 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
476 <category android:name="android.intent.category.DEFAULT" />
477 </intent-filter>
478 </activity>
479
480 <activity
481 android:name=".ContactsLiveFolders$PhoneContacts"
482 android:label="@string/liveFolderPhone"
Romain Guy4eb77b62009-03-24 18:10:17 -0700483 android:icon="@drawable/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800484 <intent-filter>
485 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
486 <category android:name="android.intent.category.DEFAULT" />
487 </intent-filter>
488 </activity>
489
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700490 <!-- vCard related -->
491 <activity android:name=".vcard.ImportVCardActivity"
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900492 android:theme="@style/BackgroundOnly">
493 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800494 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700495 <data android:mimeType="text/directory" />
Daisuke Miyakawa92ba98a2010-06-22 09:12:19 +0900496 <data android:mimeType="text/vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800497 <data android:mimeType="text/x-vcard" />
498 <category android:name="android.intent.category.DEFAULT" />
499 </intent-filter>
500 </activity>
501
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700502 <activity android:name=".vcard.SelectAccountActivity"
Daisuke Miyakawa6d2f27f2010-04-21 16:11:38 +0900503 android:theme="@style/BackgroundOnly" />
504
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700505 <activity android:name=".vcard.ExportVCardActivity"
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700506 android:theme="@style/BackgroundOnly" />
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700507
Daisuke Miyakawad8fb81a2010-06-08 17:44:22 -0700508 <service
509 android:name=".vcard.VCardService"
510 android:exported="false" />
511
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700512 <!-- Pinned header list demo -->
513 <activity android:name=".widget.PinnedHeaderListDemoActivity">
514 <intent-filter>
515 <action android:name="android.intent.action.MAIN" />
516 <category android:name="android.intent.category.DEFAULT" />
517 </intent-filter>
518 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800519 </application>
520</manifest>