blob: 5e9df0dbf02a39c68fe4f1a61ab54cf748cb98ed [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"
Daniel Lehmann57b5aa12010-09-23 17:42:23 -070043 android:hardwareAccelerated="true"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080044 >
45
46 <!-- A virtual 12 key dialer -->
47 <activity android:name="TwelveKeyDialer"
48 android:launchMode="singleTop"
49 >
50 <intent-filter>
51 <action android:name="com.android.phone.action.TOUCH_DIALER" />
52 <category android:name="android.intent.category.DEFAULT" />
53 <category android:name="android.intent.category.TAB" />
54 </intent-filter>
55 </activity>
56
57 <!-- A list of recent calls -->
58 <activity android:name="RecentCallsListActivity"
59 android:label="@string/recentCallsIconLabel"
60 >
61 <intent-filter>
62 <action android:name="com.android.phone.action.RECENT_CALLS" />
63 <category android:name="android.intent.category.DEFAULT" />
64 <category android:name="android.intent.category.TAB" />
65 </intent-filter>
66 </activity>
67
Daniel Lehmanne9b196e2010-10-26 12:17:39 -070068 <!-- Intercept Dialer Intents for devices without a phone.
69 This activity should have the same intent filters as the DialtactsActivity,
70 so that its capturing the same events. Omit android.intent.category.LAUNCHER, because we
71 don't want this to show up in the Launcher. The priorities of the intent-filters
72 are set lower, so that the user does not see a disambig dialog -->
73 <activity
74 android:name=".activities.NonPhoneActivity"
75 android:theme="@style/NonPhoneActivityTheme"
76 >
77 <intent-filter android:priority="-1">
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 android:priority="-1">
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 android:priority="-1">
91 <action android:name="android.intent.action.DIAL" />
92 <category android:name="android.intent.category.DEFAULT" />
93 </intent-filter>
94 <intent-filter android:priority="-1">
95 <action android:name="android.intent.action.MAIN" />
96 <category android:name="android.intent.category.DEFAULT" />
97 <category android:name="android.intent.category.BROWSABLE" />
98 </intent-filter>
99 <intent-filter android:priority="-1">
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 android:priority="-1">
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 android:priority="-1">
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>
118
Daniel Lehmann7675e122010-04-21 17:31:11 -0700119 <!-- Tab container for all tabs -->
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800120 <activity android:name="DialtactsActivity"
121 android:label="@string/launcherDialer"
Nicolas Catania177d88f2009-09-27 15:15:05 -0700122 android:theme="@style/DialtactsTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800123 android:launchMode="singleTask"
124 android:clearTaskOnLaunch="true"
125 android:icon="@drawable/ic_launcher_phone"
126 android:screenOrientation="nosensor"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700127 android:enabled="@*android:bool/config_voice_capable"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800128 >
129 <intent-filter>
130 <action android:name="android.intent.action.DIAL" />
131 <category android:name="android.intent.category.DEFAULT" />
132 <category android:name="android.intent.category.BROWSABLE" />
133 <data android:mimeType="vnd.android.cursor.item/phone" />
134 <data android:mimeType="vnd.android.cursor.item/person" />
135 </intent-filter>
136 <intent-filter>
137 <action android:name="android.intent.action.DIAL" />
138 <category android:name="android.intent.category.DEFAULT" />
139 <category android:name="android.intent.category.BROWSABLE" />
140 <data android:scheme="voicemail" />
141 </intent-filter>
142 <intent-filter>
143 <action android:name="android.intent.action.DIAL" />
144 <category android:name="android.intent.category.DEFAULT" />
145 </intent-filter>
146 <intent-filter>
147 <action android:name="android.intent.action.MAIN" />
148 <category android:name="android.intent.category.DEFAULT" />
149 <category android:name="android.intent.category.LAUNCHER" />
150 <category android:name="android.intent.category.BROWSABLE" />
151 </intent-filter>
152 <intent-filter>
153 <action android:name="android.intent.action.VIEW" />
154 <action android:name="android.intent.action.DIAL" />
155 <category android:name="android.intent.category.DEFAULT" />
156 <category android:name="android.intent.category.BROWSABLE" />
157 <data android:scheme="tel" />
158 </intent-filter>
159 <intent-filter>
160 <action android:name="android.intent.action.VIEW" />
161 <category android:name="android.intent.category.DEFAULT" />
162 <category android:name="android.intent.category.BROWSABLE" />
163 <data android:mimeType="vnd.android.cursor.dir/calls" />
164 </intent-filter>
165 <intent-filter>
166 <action android:name="android.intent.action.CALL_BUTTON" />
167 <category android:name="android.intent.category.DEFAULT" />
168 <category android:name="android.intent.category.BROWSABLE" />
169 </intent-filter>
170 </activity>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700171
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500172 <!-- Front door proxy that picks the right UI based on the screen config -->
173 <activity android:name=".activities.ContactsFrontDoor"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800174 android:label="@string/contactsList"
175 android:icon="@drawable/ic_launcher_contacts"
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500176 android:theme="@android:style/Theme.NoTitleBar"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800177 >
178 <intent-filter>
179 <action android:name="android.intent.action.MAIN" />
180 <category android:name="android.intent.category.DEFAULT" />
181 <category android:name="android.intent.category.LAUNCHER" />
Dmitri Plotnikov032bb362009-05-06 17:05:39 -0700182 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800183 </intent-filter>
184
185 <intent-filter>
186 <action android:name="android.intent.action.VIEW" />
187 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey2428f622009-09-13 01:08:43 -0700188 <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" />
189 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800190 </intent-filter>
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500191 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800192
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700193 <!-- The actual list of contacts -->
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700194 <activity android:name=".activities.ContactBrowserActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800195 android:label="@string/contactsList"
196 android:clearTaskOnLaunch="true"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700197 android:theme="@style/ContactBrowserTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800198 >
199 <intent-filter>
200 <action android:name="com.android.contacts.action.LIST_DEFAULT" />
201 <category android:name="android.intent.category.DEFAULT" />
202 <category android:name="android.intent.category.TAB" />
203 </intent-filter>
204
205 <intent-filter>
206 <action android:name="com.android.contacts.action.LIST_CONTACTS" />
207 <category android:name="android.intent.category.DEFAULT" />
208 <category android:name="android.intent.category.TAB" />
209 </intent-filter>
210
211 <intent-filter>
212 <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" />
213 <category android:name="android.intent.category.DEFAULT" />
214 <category android:name="android.intent.category.TAB" />
215 </intent-filter>
216
217 <intent-filter>
218 <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" />
219 <category android:name="android.intent.category.DEFAULT" />
220 <category android:name="android.intent.category.TAB" />
221 </intent-filter>
222
223 <intent-filter android:label="@string/starredList">
224 <action android:name="com.android.contacts.action.LIST_STARRED" />
225 <category android:name="android.intent.category.DEFAULT" />
226 <category android:name="android.intent.category.TAB" />
227 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700228
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800229 <intent-filter android:label="@string/frequentList">
230 <action android:name="com.android.contacts.action.LIST_FREQUENT" />
231 <category android:name="android.intent.category.DEFAULT" />
232 <category android:name="android.intent.category.TAB" />
233 </intent-filter>
234
235 <intent-filter android:label="@string/strequentList">
236 <action android:name="com.android.contacts.action.LIST_STREQUENT" />
237 <category android:name="android.intent.category.DEFAULT" />
238 <category android:name="android.intent.category.TAB" />
239 </intent-filter>
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700240
241 <intent-filter>
242 <action android:name="android.intent.action.SEARCH" />
243 <category android:name="android.intent.category.DEFAULT" />
244 </intent-filter>
245
246 <meta-data android:name="android.app.searchable"
247 android:resource="@xml/searchable"
248 />
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700249 </activity>
250
251 <activity android:name=".activities.ContactSelectionActivity"
252 android:label="@string/contactsList"
253 android:clearTaskOnLaunch="true"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700254 android:theme="@style/ContactPickerTheme"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700255 >
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800256 <intent-filter>
257 <action android:name="android.intent.action.INSERT_OR_EDIT" />
258 <category android:name="android.intent.category.DEFAULT" />
259 <data android:mimeType="vnd.android.cursor.item/person" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700260 <data android:mimeType="vnd.android.cursor.item/contact" />
261 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800262 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700263
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800264 <intent-filter>
265 <action android:name="android.intent.action.PICK" />
266 <category android:name="android.intent.category.DEFAULT" />
Evan Millarc2d862e2009-08-31 12:52:39 -0700267 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
268 <data android:mimeType="vnd.android.cursor.dir/person" android:host="contacts" />
269 <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" />
270 <data android:mimeType="vnd.android.cursor.dir/phone" android:host="contacts" />
271 <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" android:host="com.android.contacts" />
272 <data android:mimeType="vnd.android.cursor.dir/postal-address" android:host="contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800273 </intent-filter>
274
275 <intent-filter>
276 <action android:name="android.intent.action.GET_CONTENT" />
277 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov631c1ff2009-09-03 16:57:30 -0700278 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
279 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
280 <data android:mimeType="vnd.android.cursor.item/phone_v2" android:host="com.android.contacts" />
281 <data android:mimeType="vnd.android.cursor.item/phone" android:host="contacts" />
282 <data android:mimeType="vnd.android.cursor.item/postal-address_v2" android:host="com.android.contacts" />
283 <data android:mimeType="vnd.android.cursor.item/postal-address" android:host="contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800284 </intent-filter>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700285 </activity>
286
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700287 <!-- Backwards compatibility: somebody may have hard coded this activity name -->
288 <activity-alias android:name="ContactsListActivity"
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700289 android:targetActivity=".activities.ContactBrowserActivity"
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700290 />
291
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700292 <!-- An activity for joining contacts -->
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700293 <activity android:name="JoinContactActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700294 android:theme="@style/JoinContactActivityTheme"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700295 android:clearTaskOnLaunch="true"
296 >
297 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700298 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700299 <category android:name="android.intent.category.DEFAULT" />
300 </intent-filter>
301 </activity>
302
Dmitri Plotnikove8ae9ac2010-04-21 13:37:15 -0700303 <!-- An activity for selecting multiple phone numbers -->
Dmitri Plotnikova70c4f42010-09-26 15:57:01 -0700304 <activity android:name="MultiplePhonePickerActivity"
305 android:enabled="false">
Dmitri Plotnikove8ae9ac2010-04-21 13:37:15 -0700306 <intent-filter>
307 <action android:name="com.android.contacts.action.GET_MULTIPLE_PHONES" />
308 <category android:name="android.intent.category.DEFAULT" />
309 <data android:mimeType="vnd.android.cursor.dir/phone_v2" android:host="com.android.contacts" />
310 </intent-filter>
311 </activity>
312
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800313 <!-- The contacts search/filter UI -->
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700314 <activity android:name=".activities.ContactSearchActivity"
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800315 android:theme="@style/ContactsSearchTheme"
Dmitri Plotnikovd5061fe2010-06-07 15:06:58 -0700316 android:windowSoftInputMode="stateAlwaysVisible"
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800317 >
318 <intent-filter>
319 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
320 <category android:name="android.intent.category.DEFAULT" />
321 <data android:mimeType="vnd.android.cursor.dir/contact" android:host="com.android.contacts" />
322 </intent-filter>
Dmitri Plotnikov4cc85dd2010-06-29 13:15:26 -0700323
Dmitri Plotnikov8e86b752010-02-22 17:47:57 -0800324 </activity>
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700325
Dmitri Plotnikov207d4f62010-03-23 16:38:29 -0700326 <!-- The contacts search/filter UI -->
Dmitri Plotnikov4cc85dd2010-06-29 13:15:26 -0700327 <activity-alias android:name="SearchResultsActivity"
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700328 android:targetActivity=".activities.ContactBrowserActivity">
Dmitri Plotnikov4cc85dd2010-06-29 13:15:26 -0700329 </activity-alias>
Dmitri Plotnikov207d4f62010-03-23 16:38:29 -0700330
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700331 <!-- Used to set options -->
Daniel Lehmann10105742010-07-15 17:35:57 -0700332 <activity
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700333 android:name=".preference.ContactsPreferenceActivity"
334 android:label="@string/activity_title_settings"
Daniel Lehmann10105742010-07-15 17:35:57 -0700335 android:theme="@style/ContactsPreferencesTheme" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700336
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700337 <!-- Used to select display and sync groups -->
338 <activity
339 android:name=".list.CustomContactListFilterActivity"
340 android:label="@string/custom_list_filter"
Dmitri Plotnikova4d6a3b2010-10-06 18:04:31 -0700341 android:theme="@style/CustomContactListFilterTheme" />
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700342
Jeff Sharkey802b2052009-08-04 14:21:06 -0700343 <activity
Daniel Lehmann72af89f2010-10-18 15:15:59 -0700344 android:name=".activities.ShowOrCreateActivity"
Jeff Sharkeye8971622009-09-17 15:42:36 -0700345 android:theme="@style/FullyTranslucent">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700346
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700347 <intent-filter>
348 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700349 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700350 <data android:scheme="mailto" />
351 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700352 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700353 </activity>
354
Evan Millar0d0ab342009-09-30 19:03:35 -0700355 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700356 temporary hack until we add better framework support. -->
357 <activity
Daniel Lehmann72af89f2010-10-18 15:15:59 -0700358 android:name=".quickcontact.QuickContactActivity"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700359 android:theme="@style/FullyTranslucent.QuickContact"
360 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700361 android:excludeFromRecents="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700362 android:taskAffinity="android.task.quickcontact"
363 android:windowSoftInputMode="stateUnchanged"
364 >
Jeff Sharkey3f177592009-05-18 15:23:12 -0700365
366 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700367 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700368 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700369 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Bai Taod128adc2010-03-24 08:50:35 +0800370 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700371 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800372 </activity>
373
374 <activity-alias android:name="ContactShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700375 android:targetActivity=".activities.ContactSelectionActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700376 android:label="@string/shortcutContact"
377 android:icon="@drawable/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800378
379 <intent-filter>
380 <action android:name="android.intent.action.CREATE_SHORTCUT" />
381 <category android:name="android.intent.category.DEFAULT" />
382 </intent-filter>
383
384 </activity-alias>
385
Dianne Hackborn333a6152009-05-26 12:46:23 -0700386 <activity-alias android:name="alias.DialShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700387 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700388 android:label="@string/shortcutDialContact"
Daniel Lehmann095908f2010-10-15 19:20:09 -0700389 android:icon="@drawable/ic_launcher_shortcut_directdial"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700390 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700391
392 <intent-filter>
393 <action android:name="android.intent.action.CREATE_SHORTCUT" />
394 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200395 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700396 </intent-filter>
397
398 </activity-alias>
399
400 <activity-alias android:name="alias.MessageShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700401 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700402 android:label="@string/shortcutMessageContact"
Daniel Lehmann095908f2010-10-15 19:20:09 -0700403 android:icon="@drawable/ic_launcher_shortcut_directmessage"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700404 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700405
406 <intent-filter>
407 <action android:name="android.intent.action.CREATE_SHORTCUT" />
408 <category android:name="android.intent.category.DEFAULT" />
409 </intent-filter>
410
411 </activity-alias>
412
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800413 <activity android:name="CallDetailActivity"
414 android:label="@string/callDetailTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700415 android:theme="@style/CallDetailActivityTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800416 >
417 <intent-filter>
418 <action android:name="android.intent.action.VIEW" />
419 <category android:name="android.intent.category.DEFAULT" />
420 <data android:mimeType="vnd.android.cursor.item/calls" />
421 </intent-filter>
422 </activity>
423
424 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700425 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800426 android:label="@string/viewContactTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700427 android:theme="@style/ContactDetailActivityTheme">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700428
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800429 <intent-filter android:label="@string/viewContactDesription">
430 <action android:name="android.intent.action.VIEW" />
431 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700432 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
433 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700434 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800435 </intent-filter>
436 </activity>
437
Daniel Lehmannf319cf82010-06-25 17:41:13 -0700438 <!-- Create a new or edit an existing contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700439 <activity
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700440 android:name=".activities.ContactEditorActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700441 android:theme="@style/ContactEditorActivityTheme"
Daniel Lehmann3a120772010-06-21 16:21:35 -0700442 android:windowSoftInputMode="adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700443
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800444 <intent-filter android:label="@string/editContactDescription">
445 <action android:name="android.intent.action.EDIT" />
446 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700447 <data android:mimeType="vnd.android.cursor.item/person" android:host="contacts" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700448 <data android:mimeType="vnd.android.cursor.item/contact" android:host="com.android.contacts" />
Evan Millar8a79cee2009-08-19 17:20:49 -0700449 <data android:mimeType="vnd.android.cursor.item/raw_contact" android:host="com.android.contacts" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800450 </intent-filter>
451 <intent-filter android:label="@string/insertContactDescription">
452 <action android:name="android.intent.action.INSERT" />
453 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700454 <data android:mimeType="vnd.android.cursor.dir/person" />
455 <data android:mimeType="vnd.android.cursor.dir/contact" />
456 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800457 </intent-filter>
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700458 </activity>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700459
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700460 <!-- Stub service used to keep our process alive long enough for
461 background threads to finish their operations. -->
462 <service
463 android:name=".util.EmptyService"
464 android:exported="false" />
465
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700466 <!-- Service to save a contact -->
467 <service
468 android:name=".views.ContactSaveService"
469 android:exported="false" />
470
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700471 <!-- Views the details of a single contact -->
472 <activity android:name="ContactOptionsActivity"
473 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700474 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700475 <intent-filter>
476 <action android:name="android.intent.action.EDIT" />
477 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800478 </intent-filter>
479 </activity>
480
481 <!-- Attaches a photo to a contact. Started from external applications -->
482 <activity android:name="AttachImage"
Eric Fischerc30023d2010-10-28 13:47:28 -0700483 android:label="@string/contact_photo_dialog_title"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800484 android:taskAffinity="">
485 <intent-filter>
486 <action android:name="android.intent.action.ATTACH_DATA" />
487 <data android:mimeType="image/*" />
488 <category android:name="android.intent.category.DEFAULT" />
489 </intent-filter>
490 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700491 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800492
Dmitri Plotnikov884e3932010-05-13 19:13:51 -0700493 <!-- Interstitial activity that shows a phone disambig dialog -->
494 <activity android:name="CallContactActivity"
495 android:theme="@android:style/Theme.Translucent">
496 </activity>
497
Dmitri Plotnikovea82f902010-08-24 17:22:29 -0700498 <!-- Makes .ContactBrowserActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800499 <meta-data
500 android:name="android.app.default_searchable"
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700501 android:value=".activities.ContactBrowserActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800502
503
504 <!-- LIVE FOLDERS -->
505 <activity
506 android:name=".ContactsLiveFolders$AllContacts"
507 android:label="@string/liveFolderAll"
Romain Guy4eb77b62009-03-24 18:10:17 -0700508 android:icon="@drawable/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800509 <intent-filter>
510 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
511 <category android:name="android.intent.category.DEFAULT" />
512 </intent-filter>
513 </activity>
514
515 <activity
516 android:name=".ContactsLiveFolders$StarredContacts"
517 android:label="@string/liveFolderFavorites"
Romain Guy4eb77b62009-03-24 18:10:17 -0700518 android:icon="@drawable/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800519 <intent-filter>
520 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
521 <category android:name="android.intent.category.DEFAULT" />
522 </intent-filter>
523 </activity>
524
525 <activity
526 android:name=".ContactsLiveFolders$PhoneContacts"
527 android:label="@string/liveFolderPhone"
Romain Guy4eb77b62009-03-24 18:10:17 -0700528 android:icon="@drawable/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800529 <intent-filter>
530 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
531 <category android:name="android.intent.category.DEFAULT" />
532 </intent-filter>
533 </activity>
534
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700535 <!-- vCard related -->
536 <activity android:name=".vcard.ImportVCardActivity"
Daisuke Miyakawa74d59da2010-10-28 12:04:30 -0700537 android:configChanges="orientation"
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900538 android:theme="@style/BackgroundOnly">
539 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800540 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700541 <data android:mimeType="text/directory" />
Daisuke Miyakawa92ba98a2010-06-22 09:12:19 +0900542 <data android:mimeType="text/vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800543 <data android:mimeType="text/x-vcard" />
544 <category android:name="android.intent.category.DEFAULT" />
545 </intent-filter>
546 </activity>
547
Daisuke Miyakawa18b51902010-08-19 14:13:38 -0700548 <activity android:name=".vcard.CancelImportActivity"
549 android:theme="@style/BackgroundOnly" />
550
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700551 <activity android:name=".vcard.SelectAccountActivity"
Daisuke Miyakawa6d2f27f2010-04-21 16:11:38 +0900552 android:theme="@style/BackgroundOnly" />
553
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700554 <activity android:name=".vcard.ExportVCardActivity"
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700555 android:theme="@style/BackgroundOnly" />
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700556
Daisuke Miyakawad8fb81a2010-06-08 17:44:22 -0700557 <service
558 android:name=".vcard.VCardService"
559 android:exported="false" />
560
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700561 <!-- Pinned header list demo -->
562 <activity android:name=".widget.PinnedHeaderListDemoActivity">
563 <intent-filter>
564 <action android:name="android.intent.action.MAIN" />
565 <category android:name="android.intent.category.DEFAULT" />
566 </intent-filter>
567 </activity>
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700568
569 <!-- The widget that shows details and the social stream of a contact -->
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700570 <receiver android:name=".socialwidget.SocialWidgetProvider"
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700571 android:label="Contact Social Stream" >
572 <intent-filter>
573 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
574 </intent-filter>
575 <meta-data android:name="android.appwidget.provider"
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700576 android:resource="@xml/social_widget_info" />
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700577 </receiver>
578
579 <activity
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700580 android:name=".socialwidget.SocialWidgetConfigureActivity"
581 android:theme="@style/SocialWidgetConfigureTheme">
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700582 <intent-filter>
583 <action android:name="android.intent.action.APPWIDGET_PICK" />
584 </intent-filter>
585 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800586 </application>
587</manifest>