blob: b67b01041e68e1822198584df84df4e6bb4f5ca6 [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"
Dmitri Plotnikov30c26992010-09-10 14:00:34 -070075 android:enabled="@bool/dialerEnabled"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080076 >
77 <intent-filter>
78 <action android:name="android.intent.action.DIAL" />
79 <category android:name="android.intent.category.DEFAULT" />
80 <category android:name="android.intent.category.BROWSABLE" />
81 <data android:mimeType="vnd.android.cursor.item/phone" />
82 <data android:mimeType="vnd.android.cursor.item/person" />
83 </intent-filter>
84 <intent-filter>
85 <action android:name="android.intent.action.DIAL" />
86 <category android:name="android.intent.category.DEFAULT" />
87 <category android:name="android.intent.category.BROWSABLE" />
88 <data android:scheme="voicemail" />
89 </intent-filter>
90 <intent-filter>
91 <action android:name="android.intent.action.DIAL" />
92 <category android:name="android.intent.category.DEFAULT" />
93 </intent-filter>
94 <intent-filter>
95 <action android:name="android.intent.action.MAIN" />
96 <category android:name="android.intent.category.DEFAULT" />
97 <category android:name="android.intent.category.LAUNCHER" />
98 <category android:name="android.intent.category.BROWSABLE" />
99 </intent-filter>
100 <intent-filter>
101 <action android:name="android.intent.action.VIEW" />
102 <action android:name="android.intent.action.DIAL" />
103 <category android:name="android.intent.category.DEFAULT" />
104 <category android:name="android.intent.category.BROWSABLE" />
105 <data android:scheme="tel" />
106 </intent-filter>
107 <intent-filter>
108 <action android:name="android.intent.action.VIEW" />
109 <category android:name="android.intent.category.DEFAULT" />
110 <category android:name="android.intent.category.BROWSABLE" />
111 <data android:mimeType="vnd.android.cursor.dir/calls" />
112 </intent-filter>
113 <intent-filter>
114 <action android:name="android.intent.action.CALL_BUTTON" />
115 <category android:name="android.intent.category.DEFAULT" />
116 <category android:name="android.intent.category.BROWSABLE" />
117 </intent-filter>
118 </activity>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700119
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500120 <!-- Front door proxy that picks the right UI based on the screen config -->
121 <activity android:name=".activities.ContactsFrontDoor"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800122 android:label="@string/contactsList"
123 android:icon="@drawable/ic_launcher_contacts"
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500124 android:theme="@android:style/Theme.NoTitleBar"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800125 >
126 <intent-filter>
127 <action android:name="android.intent.action.MAIN" />
128 <category android:name="android.intent.category.DEFAULT" />
129 <category android:name="android.intent.category.LAUNCHER" />
Dmitri Plotnikov032bb362009-05-06 17:05:39 -0700130 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800131 </intent-filter>
132
133 <intent-filter>
134 <action android:name="android.intent.action.VIEW" />
135 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey2428f622009-09-13 01:08:43 -0700136 <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" />
137 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800138 </intent-filter>
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500139 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800140
Daniel Lehmann7675e122010-04-21 17:31:11 -0700141 <!-- Main launch Intent to open the Contacts app. This will open the app in its last manual
142 state. This is the state that has been explicitly set by the user (e.g. by clicking a tab).
143 States configured via other Intents (e.g. CallLog after Call) are not considered manual
144 state. At the moment, the Intent always goes to the DialtactsActivity, but this might later
145 be changed to also include sub-activities like Edit or View if they were left open -->
146
147 <activity-alias android:name="ContactsLaunchActivity"
148 android:targetActivity="DialtactsActivity"
149 >
150 <intent-filter>
151 <action android:name="android.intent.action.MAIN" />
152 <category android:name="android.intent.category.DEFAULT" />
153 <category android:name="android.intent.category.BROWSABLE" />
154 </intent-filter>
155 </activity-alias>
156
The Android Open Source Project1f620962009-03-09 11:52:14 -0700157 <!-- An empty activity that presents the DialtactActivity's Favorites tab -->
158 <activity-alias android:name="DialtactsFavoritesEntryActivity"
159 android:targetActivity="DialtactsActivity"
The Android Open Source Project1f620962009-03-09 11:52:14 -0700160 >
161 <intent-filter>
162 <action android:name="android.intent.action.MAIN" />
163 <category android:name="android.intent.category.DEFAULT" />
164 </intent-filter>
165 </activity-alias>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700166
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700167 <!-- The actual list of contacts -->
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700168 <activity android:name=".activities.ContactBrowserActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800169 android:label="@string/contactsList"
170 android:clearTaskOnLaunch="true"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700171 android:theme="@style/ContactBrowserTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800172 >
173 <intent-filter>
174 <action android:name="com.android.contacts.action.LIST_DEFAULT" />
175 <category android:name="android.intent.category.DEFAULT" />
176 <category android:name="android.intent.category.TAB" />
177 </intent-filter>
178
179 <intent-filter>
180 <action android:name="com.android.contacts.action.LIST_CONTACTS" />
181 <category android:name="android.intent.category.DEFAULT" />
182 <category android:name="android.intent.category.TAB" />
183 </intent-filter>
184
185 <intent-filter>
186 <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" />
187 <category android:name="android.intent.category.DEFAULT" />
188 <category android:name="android.intent.category.TAB" />
189 </intent-filter>
190
191 <intent-filter>
192 <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" />
193 <category android:name="android.intent.category.DEFAULT" />
194 <category android:name="android.intent.category.TAB" />
195 </intent-filter>
196
197 <intent-filter android:label="@string/starredList">
198 <action android:name="com.android.contacts.action.LIST_STARRED" />
199 <category android:name="android.intent.category.DEFAULT" />
200 <category android:name="android.intent.category.TAB" />
201 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700202
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800203 <intent-filter android:label="@string/frequentList">
204 <action android:name="com.android.contacts.action.LIST_FREQUENT" />
205 <category android:name="android.intent.category.DEFAULT" />
206 <category android:name="android.intent.category.TAB" />
207 </intent-filter>
208
209 <intent-filter android:label="@string/strequentList">
210 <action android:name="com.android.contacts.action.LIST_STREQUENT" />
211 <category android:name="android.intent.category.DEFAULT" />
212 <category android:name="android.intent.category.TAB" />
213 </intent-filter>
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700214 </activity>
215
216 <activity android:name=".activities.ContactSelectionActivity"
217 android:label="@string/contactsList"
218 android:clearTaskOnLaunch="true"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700219 android:theme="@style/ContactPickerTheme"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700220 >
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800221 <intent-filter>
222 <action android:name="android.intent.action.INSERT_OR_EDIT" />
223 <category android:name="android.intent.category.DEFAULT" />
224 <data android:mimeType="vnd.android.cursor.item/person" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700225 <data android:mimeType="vnd.android.cursor.item/contact" />
226 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800227 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700228
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800229 <intent-filter>
230 <action android:name="android.intent.action.PICK" />
231 <category android:name="android.intent.category.DEFAULT" />
Evan Millarc2d862e2009-08-31 12:52:39 -0700232 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
233 <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" />
234 <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" />
235 <data android:mimeType="vnd.android.cursor.dir/phone" android:host="contacts" />
236 <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" android:host="com.android.contacts" />
237 <data android:mimeType="vnd.android.cursor.dir/postal-address" android:host="contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800238 </intent-filter>
239
240 <intent-filter>
241 <action android:name="android.intent.action.GET_CONTENT" />
242 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov631c1ff2009-09-03 16:57:30 -0700243 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
244 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
245 <data android:mimeType="vnd.android.cursor.item/phone_v2" android:host="com.android.contacts" />
246 <data android:mimeType="vnd.android.cursor.item/phone" android:host="contacts" />
247 <data android:mimeType="vnd.android.cursor.item/postal-address_v2" android:host="com.android.contacts" />
248 <data android:mimeType="vnd.android.cursor.item/postal-address" android:host="contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800249 </intent-filter>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700250 </activity>
251
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700252 <!-- Backwards compatibility: somebody may have hard coded this activity name -->
253 <activity-alias android:name="ContactsListActivity"
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700254 android:targetActivity=".activities.ContactBrowserActivity"
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700255 />
256
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700257 <!-- An activity for joining contacts -->
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700258 <activity android:name="JoinContactActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700259 android:theme="@style/JoinContactActivityTheme"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700260 android:clearTaskOnLaunch="true"
261 >
262 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700263 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700264 <category android:name="android.intent.category.DEFAULT" />
265 </intent-filter>
266 </activity>
267
Dmitri Plotnikove8ae9ac2010-04-21 13:37:15 -0700268 <!-- An activity for selecting multiple phone numbers -->
269 <activity android:name="MultiplePhonePickerActivity">
270 <intent-filter>
271 <action android:name="com.android.contacts.action.GET_MULTIPLE_PHONES" />
272 <category android:name="android.intent.category.DEFAULT" />
273 <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" />
274 </intent-filter>
275 </activity>
276
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800277 <!-- The contacts search/filter UI -->
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700278 <activity android:name=".activities.ContactSearchActivity"
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800279 android:theme="@style/ContactsSearchTheme"
Dmitri Plotnikovd5061fe2010-06-07 15:06:58 -0700280 android:windowSoftInputMode="stateAlwaysVisible"
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800281 >
282 <intent-filter>
283 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
284 <category android:name="android.intent.category.DEFAULT" />
285 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
286 </intent-filter>
Dmitri Plotnikov4cc85dd2010-06-29 13:15:26 -0700287
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800288 </activity>
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700289
Dmitri Plotnikov207d4f62010-03-23 16:38:29 -0700290 <!-- The contacts search/filter UI -->
Dmitri Plotnikov4cc85dd2010-06-29 13:15:26 -0700291 <activity-alias android:name="SearchResultsActivity"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700292 android:targetActivity=".activities.ContactSearchActivity"
Dmitri Plotnikov207d4f62010-03-23 16:38:29 -0700293 >
294 <intent-filter>
295 <action android:name="android.intent.action.SEARCH" />
296 <category android:name="android.intent.category.DEFAULT" />
297 </intent-filter>
298
299 <meta-data android:name="android.app.searchable"
300 android:resource="@xml/searchable"
301 />
Dmitri Plotnikov4cc85dd2010-06-29 13:15:26 -0700302 </activity-alias>
Dmitri Plotnikov207d4f62010-03-23 16:38:29 -0700303
Jeff Sharkeye8971622009-09-17 15:42:36 -0700304 <!-- Used to select display and sync groups -->
Daniel Lehmann10105742010-07-15 17:35:57 -0700305 <activity
306 android:name=".ui.ContactsPreferencesActivity"
307 android:label="@string/displayGroups"
308 android:theme="@style/ContactsPreferencesTheme" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700309
Jeff Sharkey802b2052009-08-04 14:21:06 -0700310 <activity
Jeff Sharkeye8971622009-09-17 15:42:36 -0700311 android:name=".ui.ShowOrCreateActivity"
312 android:theme="@style/FullyTranslucent">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700313
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700314 <intent-filter>
315 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700316 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700317 <data android:scheme="mailto" />
318 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700319 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700320 </activity>
321
Evan Millar0d0ab342009-09-30 19:03:35 -0700322 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700323 temporary hack until we add better framework support. -->
324 <activity
Evan Millar0d0ab342009-09-30 19:03:35 -0700325 android:name=".ui.QuickContactActivity"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700326 android:theme="@style/FullyTranslucent.QuickContact"
327 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700328 android:excludeFromRecents="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700329 android:taskAffinity="android.task.quickcontact"
330 android:windowSoftInputMode="stateUnchanged"
331 >
Jeff Sharkey3f177592009-05-18 15:23:12 -0700332
333 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700334 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700335 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700336 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Bai Taod128adc2010-03-24 08:50:35 +0800337 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700338 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800339 </activity>
340
341 <activity-alias android:name="ContactShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700342 android:targetActivity=".activities.ContactSelectionActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700343 android:label="@string/shortcutContact"
344 android:icon="@drawable/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800345
346 <intent-filter>
347 <action android:name="android.intent.action.CREATE_SHORTCUT" />
348 <category android:name="android.intent.category.DEFAULT" />
349 </intent-filter>
350
351 </activity-alias>
352
Dianne Hackborn333a6152009-05-26 12:46:23 -0700353 <activity-alias android:name="alias.DialShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700354 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700355 android:label="@string/shortcutDialContact"
Mike Cleronf143a452009-09-30 01:13:23 -0700356 android:icon="@drawable/ic_launcher_shortcut_directdial">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700357
358 <intent-filter>
359 <action android:name="android.intent.action.CREATE_SHORTCUT" />
360 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200361 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700362 </intent-filter>
363
364 </activity-alias>
365
366 <activity-alias android:name="alias.MessageShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700367 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700368 android:label="@string/shortcutMessageContact"
Mike Cleronf143a452009-09-30 01:13:23 -0700369 android:icon="@drawable/ic_launcher_shortcut_directmessage">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700370
371 <intent-filter>
372 <action android:name="android.intent.action.CREATE_SHORTCUT" />
373 <category android:name="android.intent.category.DEFAULT" />
374 </intent-filter>
375
376 </activity-alias>
377
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800378 <activity android:name="CallDetailActivity"
379 android:label="@string/callDetailTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700380 android:theme="@style/CallDetailActivityTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800381 >
382 <intent-filter>
383 <action android:name="android.intent.action.VIEW" />
384 <category android:name="android.intent.category.DEFAULT" />
385 <data android:mimeType="vnd.android.cursor.item/calls" />
386 </intent-filter>
387 </activity>
388
389 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700390 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800391 android:label="@string/viewContactTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700392 android:theme="@style/ContactDetailActivityTheme">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700393
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800394 <intent-filter android:label="@string/viewContactDesription">
395 <action android:name="android.intent.action.VIEW" />
396 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700397 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
398 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700399 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800400 </intent-filter>
401 </activity>
402
Daniel Lehmannf319cf82010-06-25 17:41:13 -0700403 <!-- Create a new or edit an existing contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700404 <activity
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700405 android:name=".activities.ContactEditorActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700406 android:theme="@style/ContactEditorActivityTheme"
Daniel Lehmann3a120772010-06-21 16:21:35 -0700407 android:windowSoftInputMode="adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700408
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800409 <intent-filter android:label="@string/editContactDescription">
410 <action android:name="android.intent.action.EDIT" />
411 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700412 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700413 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Evan Millar8a79cee2009-08-19 17:20:49 -0700414 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800415 </intent-filter>
416 <intent-filter android:label="@string/insertContactDescription">
417 <action android:name="android.intent.action.INSERT" />
418 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700419 <data android:mimeType="vnd.android.cursor.dir/person" />
420 <data android:mimeType="vnd.android.cursor.dir/contact" />
421 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800422 </intent-filter>
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700423 </activity>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700424
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700425 <!-- Stub service used to keep our process alive long enough for
426 background threads to finish their operations. -->
427 <service
428 android:name=".util.EmptyService"
429 android:exported="false" />
430
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700431 <!-- Service to save a contact -->
432 <service
433 android:name=".views.ContactSaveService"
434 android:exported="false" />
435
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700436 <!-- Views the details of a single contact -->
437 <activity android:name="ContactOptionsActivity"
438 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700439 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700440 <intent-filter>
441 <action android:name="android.intent.action.EDIT" />
442 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800443 </intent-filter>
444 </activity>
445
446 <!-- Attaches a photo to a contact. Started from external applications -->
447 <activity android:name="AttachImage"
448 android:label="@string/attachToContact"
449 android:taskAffinity="">
450 <intent-filter>
451 <action android:name="android.intent.action.ATTACH_DATA" />
452 <data android:mimeType="image/*" />
453 <category android:name="android.intent.category.DEFAULT" />
454 </intent-filter>
455 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700456 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800457
Dmitri Plotnikov884e3932010-05-13 19:13:51 -0700458 <!-- Interstitial activity that shows a phone disambig dialog -->
459 <activity android:name="CallContactActivity"
460 android:theme="@android:style/Theme.Translucent">
461 </activity>
462
Dmitri Plotnikovea82f902010-08-24 17:22:29 -0700463 <!-- Makes .ContactBrowserActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800464 <meta-data
465 android:name="android.app.default_searchable"
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700466 android:value=".activities.ContactBrowserActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800467
468
469 <!-- LIVE FOLDERS -->
470 <activity
471 android:name=".ContactsLiveFolders$AllContacts"
472 android:label="@string/liveFolderAll"
Romain Guy4eb77b62009-03-24 18:10:17 -0700473 android:icon="@drawable/ic_launcher_folder_live_contacts">
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$StarredContacts"
482 android:label="@string/liveFolderFavorites"
Romain Guy4eb77b62009-03-24 18:10:17 -0700483 android:icon="@drawable/ic_launcher_folder_live_contacts_starred">
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
490 <activity
491 android:name=".ContactsLiveFolders$PhoneContacts"
492 android:label="@string/liveFolderPhone"
Romain Guy4eb77b62009-03-24 18:10:17 -0700493 android:icon="@drawable/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800494 <intent-filter>
495 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
496 <category android:name="android.intent.category.DEFAULT" />
497 </intent-filter>
498 </activity>
499
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700500 <!-- vCard related -->
501 <activity android:name=".vcard.ImportVCardActivity"
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900502 android:theme="@style/BackgroundOnly">
503 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800504 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700505 <data android:mimeType="text/directory" />
Daisuke Miyakawa92ba98a2010-06-22 09:12:19 +0900506 <data android:mimeType="text/vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800507 <data android:mimeType="text/x-vcard" />
508 <category android:name="android.intent.category.DEFAULT" />
509 </intent-filter>
510 </activity>
511
Daisuke Miyakawa18b51902010-08-19 14:13:38 -0700512 <activity android:name=".vcard.CancelImportActivity"
513 android:theme="@style/BackgroundOnly" />
514
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700515 <activity android:name=".vcard.SelectAccountActivity"
Daisuke Miyakawa6d2f27f2010-04-21 16:11:38 +0900516 android:theme="@style/BackgroundOnly" />
517
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700518 <activity android:name=".vcard.ExportVCardActivity"
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700519 android:theme="@style/BackgroundOnly" />
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700520
Daisuke Miyakawad8fb81a2010-06-08 17:44:22 -0700521 <service
522 android:name=".vcard.VCardService"
523 android:exported="false" />
524
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700525 <!-- Pinned header list demo -->
526 <activity android:name=".widget.PinnedHeaderListDemoActivity">
527 <intent-filter>
528 <action android:name="android.intent.action.MAIN" />
529 <category android:name="android.intent.category.DEFAULT" />
530 </intent-filter>
531 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800532 </application>
533</manifest>