blob: 56d9a0272ad33c9566ad87b752f1cc3878eb5853 [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" />
Dmitri Plotnikov99811722010-11-01 18:21:22 -070037 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080038
39 <application
40 android:label="@string/contactsList"
41 android:icon="@drawable/ic_launcher_contacts"
42 android:process="android.process.acore"
43 android:taskAffinity="android.task.contacts"
Daniel Lehmann57b5aa12010-09-23 17:42:23 -070044 android:hardwareAccelerated="true"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080045 >
46
47 <!-- A virtual 12 key dialer -->
48 <activity android:name="TwelveKeyDialer"
49 android:launchMode="singleTop"
50 >
51 <intent-filter>
52 <action android:name="com.android.phone.action.TOUCH_DIALER" />
53 <category android:name="android.intent.category.DEFAULT" />
54 <category android:name="android.intent.category.TAB" />
55 </intent-filter>
56 </activity>
57
58 <!-- A list of recent calls -->
59 <activity android:name="RecentCallsListActivity"
60 android:label="@string/recentCallsIconLabel"
61 >
62 <intent-filter>
63 <action android:name="com.android.phone.action.RECENT_CALLS" />
64 <category android:name="android.intent.category.DEFAULT" />
65 <category android:name="android.intent.category.TAB" />
66 </intent-filter>
67 </activity>
68
Daniel Lehmanne9b196e2010-10-26 12:17:39 -070069 <!-- Intercept Dialer Intents for devices without a phone.
70 This activity should have the same intent filters as the DialtactsActivity,
71 so that its capturing the same events. Omit android.intent.category.LAUNCHER, because we
72 don't want this to show up in the Launcher. The priorities of the intent-filters
73 are set lower, so that the user does not see a disambig dialog -->
74 <activity
75 android:name=".activities.NonPhoneActivity"
76 android:theme="@style/NonPhoneActivityTheme"
77 >
78 <intent-filter android:priority="-1">
79 <action android:name="android.intent.action.DIAL" />
80 <category android:name="android.intent.category.DEFAULT" />
81 <category android:name="android.intent.category.BROWSABLE" />
82 <data android:mimeType="vnd.android.cursor.item/phone" />
83 <data android:mimeType="vnd.android.cursor.item/person" />
84 </intent-filter>
85 <intent-filter android:priority="-1">
86 <action android:name="android.intent.action.DIAL" />
87 <category android:name="android.intent.category.DEFAULT" />
88 <category android:name="android.intent.category.BROWSABLE" />
89 <data android:scheme="voicemail" />
90 </intent-filter>
91 <intent-filter android:priority="-1">
92 <action android:name="android.intent.action.DIAL" />
93 <category android:name="android.intent.category.DEFAULT" />
94 </intent-filter>
95 <intent-filter android:priority="-1">
96 <action android:name="android.intent.action.MAIN" />
97 <category android:name="android.intent.category.DEFAULT" />
98 <category android:name="android.intent.category.BROWSABLE" />
99 </intent-filter>
100 <intent-filter android:priority="-1">
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 android:priority="-1">
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 android:priority="-1">
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>
119
Daniel Lehmann7675e122010-04-21 17:31:11 -0700120 <!-- Tab container for all tabs -->
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800121 <activity android:name="DialtactsActivity"
122 android:label="@string/launcherDialer"
Nicolas Catania177d88f2009-09-27 15:15:05 -0700123 android:theme="@style/DialtactsTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800124 android:launchMode="singleTask"
125 android:clearTaskOnLaunch="true"
126 android:icon="@drawable/ic_launcher_phone"
127 android:screenOrientation="nosensor"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700128 android:enabled="@*android:bool/config_voice_capable"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800129 >
130 <intent-filter>
131 <action android:name="android.intent.action.DIAL" />
132 <category android:name="android.intent.category.DEFAULT" />
133 <category android:name="android.intent.category.BROWSABLE" />
134 <data android:mimeType="vnd.android.cursor.item/phone" />
135 <data android:mimeType="vnd.android.cursor.item/person" />
136 </intent-filter>
137 <intent-filter>
138 <action android:name="android.intent.action.DIAL" />
139 <category android:name="android.intent.category.DEFAULT" />
140 <category android:name="android.intent.category.BROWSABLE" />
141 <data android:scheme="voicemail" />
142 </intent-filter>
143 <intent-filter>
144 <action android:name="android.intent.action.DIAL" />
145 <category android:name="android.intent.category.DEFAULT" />
146 </intent-filter>
147 <intent-filter>
148 <action android:name="android.intent.action.MAIN" />
149 <category android:name="android.intent.category.DEFAULT" />
150 <category android:name="android.intent.category.LAUNCHER" />
151 <category android:name="android.intent.category.BROWSABLE" />
152 </intent-filter>
153 <intent-filter>
154 <action android:name="android.intent.action.VIEW" />
155 <action android:name="android.intent.action.DIAL" />
156 <category android:name="android.intent.category.DEFAULT" />
157 <category android:name="android.intent.category.BROWSABLE" />
158 <data android:scheme="tel" />
159 </intent-filter>
160 <intent-filter>
161 <action android:name="android.intent.action.VIEW" />
162 <category android:name="android.intent.category.DEFAULT" />
163 <category android:name="android.intent.category.BROWSABLE" />
164 <data android:mimeType="vnd.android.cursor.dir/calls" />
165 </intent-filter>
166 <intent-filter>
167 <action android:name="android.intent.action.CALL_BUTTON" />
168 <category android:name="android.intent.category.DEFAULT" />
169 <category android:name="android.intent.category.BROWSABLE" />
170 </intent-filter>
171 </activity>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700172
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500173 <!-- Front door proxy that picks the right UI based on the screen config -->
174 <activity android:name=".activities.ContactsFrontDoor"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800175 android:label="@string/contactsList"
176 android:icon="@drawable/ic_launcher_contacts"
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500177 android:theme="@android:style/Theme.NoTitleBar"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800178 >
179 <intent-filter>
180 <action android:name="android.intent.action.MAIN" />
181 <category android:name="android.intent.category.DEFAULT" />
182 <category android:name="android.intent.category.LAUNCHER" />
Dmitri Plotnikov032bb362009-05-06 17:05:39 -0700183 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800184 </intent-filter>
185
186 <intent-filter>
187 <action android:name="android.intent.action.VIEW" />
188 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey2428f622009-09-13 01:08:43 -0700189 <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" />
190 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800191 </intent-filter>
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500192 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800193
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700194 <!-- The actual list of contacts -->
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700195 <activity android:name=".activities.ContactBrowserActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800196 android:label="@string/contactsList"
197 android:clearTaskOnLaunch="true"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700198 android:theme="@style/ContactBrowserTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800199 >
200 <intent-filter>
201 <action android:name="com.android.contacts.action.LIST_DEFAULT" />
202 <category android:name="android.intent.category.DEFAULT" />
203 <category android:name="android.intent.category.TAB" />
204 </intent-filter>
205
206 <intent-filter>
207 <action android:name="com.android.contacts.action.LIST_CONTACTS" />
208 <category android:name="android.intent.category.DEFAULT" />
209 <category android:name="android.intent.category.TAB" />
210 </intent-filter>
211
212 <intent-filter>
213 <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" />
214 <category android:name="android.intent.category.DEFAULT" />
215 <category android:name="android.intent.category.TAB" />
216 </intent-filter>
217
218 <intent-filter>
219 <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" />
220 <category android:name="android.intent.category.DEFAULT" />
221 <category android:name="android.intent.category.TAB" />
222 </intent-filter>
223
224 <intent-filter android:label="@string/starredList">
225 <action android:name="com.android.contacts.action.LIST_STARRED" />
226 <category android:name="android.intent.category.DEFAULT" />
227 <category android:name="android.intent.category.TAB" />
228 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700229
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800230 <intent-filter android:label="@string/frequentList">
231 <action android:name="com.android.contacts.action.LIST_FREQUENT" />
232 <category android:name="android.intent.category.DEFAULT" />
233 <category android:name="android.intent.category.TAB" />
234 </intent-filter>
235
236 <intent-filter android:label="@string/strequentList">
237 <action android:name="com.android.contacts.action.LIST_STREQUENT" />
238 <category android:name="android.intent.category.DEFAULT" />
239 <category android:name="android.intent.category.TAB" />
240 </intent-filter>
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700241
242 <intent-filter>
243 <action android:name="android.intent.action.SEARCH" />
244 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700245 </intent-filter>
246
247 <intent-filter>
248 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
249 <category android:name="android.intent.category.DEFAULT" />
250 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700251 </intent-filter>
252
253 <meta-data android:name="android.app.searchable"
254 android:resource="@xml/searchable"
255 />
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700256 </activity>
257
258 <activity android:name=".activities.ContactSelectionActivity"
259 android:label="@string/contactsList"
260 android:clearTaskOnLaunch="true"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700261 android:theme="@style/ContactPickerTheme"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700262 >
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800263 <intent-filter>
264 <action android:name="android.intent.action.INSERT_OR_EDIT" />
265 <category android:name="android.intent.category.DEFAULT" />
266 <data android:mimeType="vnd.android.cursor.item/person" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700267 <data android:mimeType="vnd.android.cursor.item/contact" />
268 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800269 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700270
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800271 <intent-filter>
272 <action android:name="android.intent.action.PICK" />
273 <category android:name="android.intent.category.DEFAULT" />
Evan Millarc2d862e2009-08-31 12:52:39 -0700274 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
275 <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" />
276 <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" />
277 <data android:mimeType="vnd.android.cursor.dir/phone" android:host="contacts" />
278 <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" android:host="com.android.contacts" />
279 <data android:mimeType="vnd.android.cursor.dir/postal-address" android:host="contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800280 </intent-filter>
281
282 <intent-filter>
283 <action android:name="android.intent.action.GET_CONTENT" />
284 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov631c1ff2009-09-03 16:57:30 -0700285 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
286 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
287 <data android:mimeType="vnd.android.cursor.item/phone_v2" android:host="com.android.contacts" />
288 <data android:mimeType="vnd.android.cursor.item/phone" android:host="contacts" />
289 <data android:mimeType="vnd.android.cursor.item/postal-address_v2" android:host="com.android.contacts" />
290 <data android:mimeType="vnd.android.cursor.item/postal-address" android:host="contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800291 </intent-filter>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700292 </activity>
293
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700294 <!-- Backwards compatibility: somebody may have hard coded this activity name -->
295 <activity-alias android:name="ContactsListActivity"
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700296 android:targetActivity=".activities.ContactBrowserActivity"
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700297 />
298
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700299 <!-- An activity for joining contacts -->
Dmitri Plotnikovd21ddb22010-11-03 14:25:59 -0700300 <activity android:name=".activities.JoinContactActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700301 android:theme="@style/JoinContactActivityTheme"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700302 android:clearTaskOnLaunch="true"
303 >
304 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700305 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700306 <category android:name="android.intent.category.DEFAULT" />
307 </intent-filter>
308 </activity>
309
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700310 <!-- Used to set options -->
Daniel Lehmann10105742010-07-15 17:35:57 -0700311 <activity
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700312 android:name=".preference.ContactsPreferenceActivity"
313 android:label="@string/activity_title_settings"
Daniel Lehmann10105742010-07-15 17:35:57 -0700314 android:theme="@style/ContactsPreferencesTheme" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700315
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700316 <!-- Used to select display and sync groups -->
317 <activity
318 android:name=".list.CustomContactListFilterActivity"
319 android:label="@string/custom_list_filter"
Dmitri Plotnikova4d6a3b2010-10-06 18:04:31 -0700320 android:theme="@style/CustomContactListFilterTheme" />
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700321
Jeff Sharkey802b2052009-08-04 14:21:06 -0700322 <activity
Daniel Lehmann72af89f2010-10-18 15:15:59 -0700323 android:name=".activities.ShowOrCreateActivity"
Jeff Sharkeye8971622009-09-17 15:42:36 -0700324 android:theme="@style/FullyTranslucent">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700325
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700326 <intent-filter>
327 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700328 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700329 <data android:scheme="mailto" />
330 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700331 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700332 </activity>
333
Evan Millar0d0ab342009-09-30 19:03:35 -0700334 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700335 temporary hack until we add better framework support. -->
336 <activity
Daniel Lehmann72af89f2010-10-18 15:15:59 -0700337 android:name=".quickcontact.QuickContactActivity"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700338 android:theme="@style/FullyTranslucent.QuickContact"
339 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700340 android:excludeFromRecents="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700341 android:taskAffinity="android.task.quickcontact"
342 android:windowSoftInputMode="stateUnchanged"
343 >
Jeff Sharkey3f177592009-05-18 15:23:12 -0700344
345 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700346 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700347 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700348 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Bai Taod128adc2010-03-24 08:50:35 +0800349 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700350 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800351 </activity>
352
Daniel Lehmannaf8e3862010-11-19 15:38:44 -0800353 <!-- Flushes the QuickContact IntentCache -->
354 <receiver android:name=".quickcontact.PackageIntentReceiver">
355 <intent-filter>
356 <action android:name="android.intent.action.PACKAGE_ADDED" />
357 <data android:scheme="package" />
358 </intent-filter>
359 <intent-filter>
360 <action android:name="android.intent.action.PACKAGE_REPLACED" />
361 <data android:scheme="package" />
362 </intent-filter>
363 <intent-filter>
364 <action android:name="android.intent.action.PACKAGE_REMOVED" />
365 <data android:scheme="package" />
366 </intent-filter>
367 <intent-filter>
368 <action android:name="android.intent.action.PACKAGE_CHANGED" />
369 <data android:scheme="package" />
370 </intent-filter>
371 </receiver>
372
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800373 <activity-alias android:name="ContactShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700374 android:targetActivity=".activities.ContactSelectionActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700375 android:label="@string/shortcutContact"
376 android:icon="@drawable/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800377
378 <intent-filter>
379 <action android:name="android.intent.action.CREATE_SHORTCUT" />
380 <category android:name="android.intent.category.DEFAULT" />
381 </intent-filter>
382
383 </activity-alias>
384
Dianne Hackborn333a6152009-05-26 12:46:23 -0700385 <activity-alias android:name="alias.DialShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700386 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700387 android:label="@string/shortcutDialContact"
Daniel Lehmann095908f2010-10-15 19:20:09 -0700388 android:icon="@drawable/ic_launcher_shortcut_directdial"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700389 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700390
391 <intent-filter>
392 <action android:name="android.intent.action.CREATE_SHORTCUT" />
393 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200394 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700395 </intent-filter>
396
397 </activity-alias>
398
399 <activity-alias android:name="alias.MessageShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700400 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700401 android:label="@string/shortcutMessageContact"
Daniel Lehmann095908f2010-10-15 19:20:09 -0700402 android:icon="@drawable/ic_launcher_shortcut_directmessage"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700403 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700404
405 <intent-filter>
406 <action android:name="android.intent.action.CREATE_SHORTCUT" />
407 <category android:name="android.intent.category.DEFAULT" />
408 </intent-filter>
409
410 </activity-alias>
411
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800412 <activity android:name="CallDetailActivity"
413 android:label="@string/callDetailTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700414 android:theme="@style/CallDetailActivityTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800415 >
416 <intent-filter>
417 <action android:name="android.intent.action.VIEW" />
418 <category android:name="android.intent.category.DEFAULT" />
419 <data android:mimeType="vnd.android.cursor.item/calls" />
420 </intent-filter>
421 </activity>
422
423 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700424 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800425 android:label="@string/viewContactTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700426 android:theme="@style/ContactDetailActivityTheme">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700427
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800428 <intent-filter android:label="@string/viewContactDesription">
429 <action android:name="android.intent.action.VIEW" />
430 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700431 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
432 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700433 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800434 </intent-filter>
435 </activity>
436
Daniel Lehmannf319cf82010-06-25 17:41:13 -0700437 <!-- Create a new or edit an existing contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700438 <activity
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700439 android:name=".activities.ContactEditorActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700440 android:theme="@style/ContactEditorActivityTheme"
Daniel Lehmann3a120772010-06-21 16:21:35 -0700441 android:windowSoftInputMode="adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700442
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800443 <intent-filter android:label="@string/editContactDescription">
444 <action android:name="android.intent.action.EDIT" />
445 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700446 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700447 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Evan Millar8a79cee2009-08-19 17:20:49 -0700448 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800449 </intent-filter>
450 <intent-filter android:label="@string/insertContactDescription">
451 <action android:name="android.intent.action.INSERT" />
452 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700453 <data android:mimeType="vnd.android.cursor.dir/person" />
454 <data android:mimeType="vnd.android.cursor.dir/contact" />
455 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800456 </intent-filter>
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700457 </activity>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700458
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700459 <!-- Stub service used to keep our process alive long enough for
460 background threads to finish their operations. -->
461 <service
462 android:name=".util.EmptyService"
463 android:exported="false" />
464
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700465 <!-- Service to save a contact -->
466 <service
467 android:name=".views.ContactSaveService"
468 android:exported="false" />
469
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700470 <!-- Views the details of a single contact -->
471 <activity android:name="ContactOptionsActivity"
472 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700473 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700474 <intent-filter>
475 <action android:name="android.intent.action.EDIT" />
476 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800477 </intent-filter>
478 </activity>
479
480 <!-- Attaches a photo to a contact. Started from external applications -->
481 <activity android:name="AttachImage"
Daniel Lehmann9442ef42010-11-09 17:35:53 -0800482 android:label="@string/attach_photo_dialog_title"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800483 android:taskAffinity="">
484 <intent-filter>
485 <action android:name="android.intent.action.ATTACH_DATA" />
486 <data android:mimeType="image/*" />
487 <category android:name="android.intent.category.DEFAULT" />
488 </intent-filter>
489 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700490 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800491
Dmitri Plotnikov884e3932010-05-13 19:13:51 -0700492 <!-- Interstitial activity that shows a phone disambig dialog -->
493 <activity android:name="CallContactActivity"
494 android:theme="@android:style/Theme.Translucent">
495 </activity>
496
Dmitri Plotnikovea82f902010-08-24 17:22:29 -0700497 <!-- Makes .ContactBrowserActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800498 <meta-data
499 android:name="android.app.default_searchable"
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700500 android:value=".activities.ContactBrowserActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800501
502
503 <!-- LIVE FOLDERS -->
504 <activity
505 android:name=".ContactsLiveFolders$AllContacts"
506 android:label="@string/liveFolderAll"
Romain Guy4eb77b62009-03-24 18:10:17 -0700507 android:icon="@drawable/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800508 <intent-filter>
509 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
510 <category android:name="android.intent.category.DEFAULT" />
511 </intent-filter>
512 </activity>
513
514 <activity
515 android:name=".ContactsLiveFolders$StarredContacts"
516 android:label="@string/liveFolderFavorites"
Romain Guy4eb77b62009-03-24 18:10:17 -0700517 android:icon="@drawable/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800518 <intent-filter>
519 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
520 <category android:name="android.intent.category.DEFAULT" />
521 </intent-filter>
522 </activity>
523
524 <activity
525 android:name=".ContactsLiveFolders$PhoneContacts"
526 android:label="@string/liveFolderPhone"
Romain Guy4eb77b62009-03-24 18:10:17 -0700527 android:icon="@drawable/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800528 <intent-filter>
529 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
530 <category android:name="android.intent.category.DEFAULT" />
531 </intent-filter>
532 </activity>
533
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700534 <!-- vCard related -->
535 <activity android:name=".vcard.ImportVCardActivity"
Daisuke Miyakawa74d59da2010-10-28 12:04:30 -0700536 android:configChanges="orientation"
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900537 android:theme="@style/BackgroundOnly">
538 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800539 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700540 <data android:mimeType="text/directory" />
Daisuke Miyakawa92ba98a2010-06-22 09:12:19 +0900541 <data android:mimeType="text/vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800542 <data android:mimeType="text/x-vcard" />
543 <category android:name="android.intent.category.DEFAULT" />
544 </intent-filter>
545 </activity>
546
Daisuke Miyakawaab596602010-11-18 17:28:02 -0800547 <activity android:name=".vcard.CancelActivity"
Daisuke Miyakawa18b51902010-08-19 14:13:38 -0700548 android:theme="@style/BackgroundOnly" />
549
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700550 <activity android:name=".vcard.SelectAccountActivity"
Daisuke Miyakawa6d2f27f2010-04-21 16:11:38 +0900551 android:theme="@style/BackgroundOnly" />
552
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700553 <activity android:name=".vcard.ExportVCardActivity"
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700554 android:theme="@style/BackgroundOnly" />
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700555
Daisuke Miyakawad8fb81a2010-06-08 17:44:22 -0700556 <service
557 android:name=".vcard.VCardService"
558 android:exported="false" />
559
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700560 <!-- Pinned header list demo -->
561 <activity android:name=".widget.PinnedHeaderListDemoActivity">
562 <intent-filter>
563 <action android:name="android.intent.action.MAIN" />
564 <category android:name="android.intent.category.DEFAULT" />
565 </intent-filter>
566 </activity>
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700567
568 <!-- The widget that shows details and the social stream of a contact -->
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700569 <receiver android:name=".socialwidget.SocialWidgetProvider"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700570 android:label="@string/social_widget_label" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700571 <intent-filter>
572 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
573 </intent-filter>
574 <meta-data android:name="android.appwidget.provider"
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700575 android:resource="@xml/social_widget_info" />
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700576 </receiver>
577
578 <activity
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700579 android:name=".socialwidget.SocialWidgetConfigureActivity"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700580 android:theme="@android:style/Theme.Translucent.NoTitleBar" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700581 <intent-filter>
582 <action android:name="android.intent.action.APPWIDGET_PICK" />
583 </intent-filter>
584 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800585 </application>
586</manifest>