blob: 7fb7f37e36834f21bb1123c2950bfc83adc50516 [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" />
Dave Santoro0a4d2252011-05-20 11:40:34 -070028 <uses-permission android:name="android.permission.READ_PROFILE" />
29 <uses-permission android:name="android.permission.WRITE_PROFILE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080030 <uses-permission android:name="android.permission.INTERNET" />
Martijn Coenen8bd40652011-06-15 15:55:05 +020031 <uses-permission android:name="android.permission.NFC" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080032 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
33 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
34 <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" />
Daisuke Miyakawa2991dd92009-05-19 08:32:17 +090035 <uses-permission android:name="android.permission.WAKE_LOCK" />
Daisuke Miyakawa72c50522009-07-07 15:37:59 -070036 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Dmitri Plotnikovdaa2d5c2010-01-29 17:44:20 -080037 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Fred Quintana104b7922009-07-22 20:01:15 -070038 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
Nicolas Catania9bcf4702009-11-06 13:19:43 -080039 <uses-permission android:name="android.permission.VIBRATE" />
Dmitri Plotnikov99811722010-11-01 18:21:22 -070040 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Flavio Lerda40d92c42011-07-01 13:47:42 +010041 <uses-permission android:name="com.android.voicemail.permission.READ_WRITE_OWN_VOICEMAIL" />
42 <uses-permission android:name="com.android.voicemail.permission.READ_WRITE_ALL_VOICEMAIL" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080043
44 <application
Dmitri Plotnikovf049ff02010-11-29 10:15:24 -080045 android:name="com.android.contacts.ContactsApplication"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080046 android:label="@string/contactsList"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -080047 android:icon="@mipmap/ic_launcher_contacts"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080048 android:process="android.process.acore"
49 android:taskAffinity="android.task.contacts"
Daniel Lehmann57b5aa12010-09-23 17:42:23 -070050 android:hardwareAccelerated="true"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080051 >
52
Daniel Lehmannf1054f12011-05-05 21:06:42 -070053 <!-- A virtual 12 key dialer -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -070054 <activity android:name=".activities.DialpadActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080055 android:launchMode="singleTop"
56 >
57 <intent-filter>
58 <action android:name="com.android.phone.action.TOUCH_DIALER" />
59 <category android:name="android.intent.category.DEFAULT" />
60 <category android:name="android.intent.category.TAB" />
61 </intent-filter>
62 </activity>
63
Daniel Lehmannf1054f12011-05-05 21:06:42 -070064 <!-- A list of recent calls -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -070065 <activity android:name=".activities.CallLogActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080066 android:label="@string/recentCallsIconLabel"
Flavio Lerdae00060f2011-07-04 18:59:55 +010067 android:theme="@style/DialtactsTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080068 >
69 <intent-filter>
70 <action android:name="com.android.phone.action.RECENT_CALLS" />
71 <category android:name="android.intent.category.DEFAULT" />
72 <category android:name="android.intent.category.TAB" />
73 </intent-filter>
74 </activity>
75
Daniel Lehmanne9b196e2010-10-26 12:17:39 -070076 <!-- Intercept Dialer Intents for devices without a phone.
77 This activity should have the same intent filters as the DialtactsActivity,
78 so that its capturing the same events. Omit android.intent.category.LAUNCHER, because we
79 don't want this to show up in the Launcher. The priorities of the intent-filters
80 are set lower, so that the user does not see a disambig dialog -->
81 <activity
82 android:name=".activities.NonPhoneActivity"
83 android:theme="@style/NonPhoneActivityTheme"
84 >
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:mimeType="vnd.android.cursor.item/phone" />
90 <data android:mimeType="vnd.android.cursor.item/person" />
91 </intent-filter>
92 <intent-filter android:priority="-1">
93 <action android:name="android.intent.action.DIAL" />
94 <category android:name="android.intent.category.DEFAULT" />
95 <category android:name="android.intent.category.BROWSABLE" />
96 <data android:scheme="voicemail" />
97 </intent-filter>
98 <intent-filter android:priority="-1">
99 <action android:name="android.intent.action.DIAL" />
100 <category android:name="android.intent.category.DEFAULT" />
101 </intent-filter>
102 <intent-filter android:priority="-1">
103 <action android:name="android.intent.action.MAIN" />
104 <category android:name="android.intent.category.DEFAULT" />
105 <category android:name="android.intent.category.BROWSABLE" />
106 </intent-filter>
107 <intent-filter android:priority="-1">
108 <action android:name="android.intent.action.VIEW" />
109 <action android:name="android.intent.action.DIAL" />
110 <category android:name="android.intent.category.DEFAULT" />
111 <category android:name="android.intent.category.BROWSABLE" />
112 <data android:scheme="tel" />
113 </intent-filter>
114 <intent-filter android:priority="-1">
115 <action android:name="android.intent.action.VIEW" />
116 <category android:name="android.intent.category.DEFAULT" />
117 <category android:name="android.intent.category.BROWSABLE" />
118 <data android:mimeType="vnd.android.cursor.dir/calls" />
119 </intent-filter>
120 <intent-filter android:priority="-1">
121 <action android:name="android.intent.action.CALL_BUTTON" />
122 <category android:name="android.intent.category.DEFAULT" />
123 <category android:name="android.intent.category.BROWSABLE" />
124 </intent-filter>
125 </activity>
126
Daniel Lehmann7675e122010-04-21 17:31:11 -0700127 <!-- Tab container for all tabs -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -0700128 <activity android:name=".activities.DialtactsActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800129 android:label="@string/launcherDialer"
Nicolas Catania177d88f2009-09-27 15:15:05 -0700130 android:theme="@style/DialtactsTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800131 android:launchMode="singleTask"
132 android:clearTaskOnLaunch="true"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800133 android:icon="@mipmap/ic_launcher_phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800134 android:screenOrientation="nosensor"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700135 android:enabled="@*android:bool/config_voice_capable"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700136 android:taskAffinity="android.task.contacts.phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800137 >
138 <intent-filter>
139 <action android:name="android.intent.action.DIAL" />
140 <category android:name="android.intent.category.DEFAULT" />
141 <category android:name="android.intent.category.BROWSABLE" />
142 <data android:mimeType="vnd.android.cursor.item/phone" />
143 <data android:mimeType="vnd.android.cursor.item/person" />
144 </intent-filter>
145 <intent-filter>
146 <action android:name="android.intent.action.DIAL" />
147 <category android:name="android.intent.category.DEFAULT" />
148 <category android:name="android.intent.category.BROWSABLE" />
149 <data android:scheme="voicemail" />
150 </intent-filter>
151 <intent-filter>
152 <action android:name="android.intent.action.DIAL" />
153 <category android:name="android.intent.category.DEFAULT" />
154 </intent-filter>
155 <intent-filter>
156 <action android:name="android.intent.action.MAIN" />
157 <category android:name="android.intent.category.DEFAULT" />
158 <category android:name="android.intent.category.LAUNCHER" />
159 <category android:name="android.intent.category.BROWSABLE" />
160 </intent-filter>
161 <intent-filter>
162 <action android:name="android.intent.action.VIEW" />
163 <action android:name="android.intent.action.DIAL" />
164 <category android:name="android.intent.category.DEFAULT" />
165 <category android:name="android.intent.category.BROWSABLE" />
166 <data android:scheme="tel" />
167 </intent-filter>
168 <intent-filter>
169 <action android:name="android.intent.action.VIEW" />
170 <category android:name="android.intent.category.DEFAULT" />
171 <category android:name="android.intent.category.BROWSABLE" />
172 <data android:mimeType="vnd.android.cursor.dir/calls" />
173 </intent-filter>
174 <intent-filter>
175 <action android:name="android.intent.action.CALL_BUTTON" />
176 <category android:name="android.intent.category.DEFAULT" />
177 <category android:name="android.intent.category.BROWSABLE" />
178 </intent-filter>
179 </activity>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700180
Katherine Kuan9856fce2011-06-01 10:24:09 -0700181 <!-- The main Contacts activity with the contact list, favorites, and groups. -->
182 <activity android:name=".activities.PeopleActivity"
183 android:label="@string/people"
184 android:theme="@style/PeopleTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800185 android:clearTaskOnLaunch="true"
186 android:launchMode="singleTop"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800187 >
188 <intent-filter>
189 <action android:name="android.intent.action.MAIN" />
190 <category android:name="android.intent.category.DEFAULT" />
191 <category android:name="android.intent.category.LAUNCHER" />
Dmitri Plotnikov032bb362009-05-06 17:05:39 -0700192 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800193 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800194 <intent-filter>
195 <action android:name="com.android.contacts.action.LIST_DEFAULT" />
196 <category android:name="android.intent.category.DEFAULT" />
197 <category android:name="android.intent.category.TAB" />
198 </intent-filter>
199
200 <intent-filter>
201 <action android:name="com.android.contacts.action.LIST_CONTACTS" />
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_ALL_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_CONTACTS_WITH_PHONES" />
214 <category android:name="android.intent.category.DEFAULT" />
215 <category android:name="android.intent.category.TAB" />
216 </intent-filter>
217
218 <intent-filter android:label="@string/starredList">
219 <action android:name="com.android.contacts.action.LIST_STARRED" />
220 <category android:name="android.intent.category.DEFAULT" />
221 <category android:name="android.intent.category.TAB" />
222 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700223
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800224 <intent-filter android:label="@string/frequentList">
225 <action android:name="com.android.contacts.action.LIST_FREQUENT" />
226 <category android:name="android.intent.category.DEFAULT" />
227 <category android:name="android.intent.category.TAB" />
228 </intent-filter>
229
230 <intent-filter android:label="@string/strequentList">
231 <action android:name="com.android.contacts.action.LIST_STREQUENT" />
232 <category android:name="android.intent.category.DEFAULT" />
233 <category android:name="android.intent.category.TAB" />
234 </intent-filter>
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700235
236 <intent-filter>
237 <action android:name="android.intent.action.SEARCH" />
238 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov0edd4072011-01-19 10:10:10 -0800239 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700240 </intent-filter>
241
242 <intent-filter>
Dmitri Plotnikov30b99712011-01-20 09:29:44 -0800243 <action android:name="android.intent.action.SEARCH" />
244 <category android:name="android.intent.category.DEFAULT" />
245 </intent-filter>
246
247 <intent-filter>
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700248 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
249 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800250 <data android:mimeType="vnd.android.cursor.dir/contact" />
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"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700260 android:theme="@style/ContactPickerTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800261 android:launchMode="singleTop"
262 android:clearTaskOnLaunch="true"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700263 >
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800264 <intent-filter>
265 <action android:name="android.intent.action.INSERT_OR_EDIT" />
266 <category android:name="android.intent.category.DEFAULT" />
267 <data android:mimeType="vnd.android.cursor.item/person" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700268 <data android:mimeType="vnd.android.cursor.item/contact" />
269 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800270 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700271
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800272 <intent-filter>
273 <action android:name="android.intent.action.PICK" />
274 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800275 <data android:mimeType="vnd.android.cursor.dir/contact" />
276 <data android:mimeType="vnd.android.cursor.dir/person" />
277 <data android:mimeType="vnd.android.cursor.dir/phone_v2" />
278 <data android:mimeType="vnd.android.cursor.dir/phone" />
279 <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" />
280 <data android:mimeType="vnd.android.cursor.dir/postal-address" />
Daniel Lehmannc86ace72011-03-23 21:04:29 -0700281 <data android:mimeType="vnd.android.cursor.dir/email_v2" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800282 </intent-filter>
283
284 <intent-filter>
285 <action android:name="android.intent.action.GET_CONTENT" />
286 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800287 <data android:mimeType="vnd.android.cursor.item/contact" />
288 <data android:mimeType="vnd.android.cursor.item/person" />
289 <data android:mimeType="vnd.android.cursor.item/phone_v2" />
290 <data android:mimeType="vnd.android.cursor.item/phone" />
291 <data android:mimeType="vnd.android.cursor.item/postal-address_v2" />
292 <data android:mimeType="vnd.android.cursor.item/postal-address" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800293 </intent-filter>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700294 </activity>
295
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700296 <!-- Backwards compatibility: somebody may have hard coded this activity name -->
297 <activity-alias android:name="ContactsListActivity"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700298 android:targetActivity=".activities.PeopleActivity"
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700299 />
300
Daniel Lehmanne9b94612011-07-11 11:44:56 -0700301 <!-- Backwards compatibility: "Contacts" from Honeycomb -->
302 <activity-alias android:name=".activities.ContactsFrontDoor"
303 android:targetActivity=".activities.PeopleActivity"
304 android:exported="true"
305 />
306
307 <!-- Backwards compatibility: "Contacts" from Gingerbread and earlier -->
308 <activity-alias android:name="DialtactsContactsEntryActivity"
309 android:targetActivity=".activities.PeopleActivity"
310 android:exported="true"
311 />
312
313 <!-- Backwards compatibility: "Phone" from Gingerbread and earlier -->
314 <activity-alias android:name="DialtactsActivity"
315 android:targetActivity=".activities.DialtactsActivity"
316 android:exported="true"
317 />
318
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700319 <!-- An activity for joining contacts -->
Dmitri Plotnikovd21ddb22010-11-03 14:25:59 -0700320 <activity android:name=".activities.JoinContactActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700321 android:theme="@style/JoinContactActivityTheme"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700322 android:clearTaskOnLaunch="true"
323 >
324 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700325 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700326 <category android:name="android.intent.category.DEFAULT" />
327 </intent-filter>
328 </activity>
329
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700330 <!-- Used to set options -->
Daniel Lehmann10105742010-07-15 17:35:57 -0700331 <activity
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700332 android:name=".preference.ContactsPreferenceActivity"
333 android:label="@string/activity_title_settings"
Daniel Lehmann10105742010-07-15 17:35:57 -0700334 android:theme="@style/ContactsPreferencesTheme" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700335
Katherine Kuan495db432011-07-06 18:58:46 -0700336 <!-- Used to filter contacts list by account -->
337 <activity
338 android:name=".list.AccountFilterActivity"
339 android:label="@string/activity_title_contacts_filter"
340 android:theme="@style/ContactListFilterTheme" />
341
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700342 <!-- Used to select display and sync groups -->
343 <activity
344 android:name=".list.CustomContactListFilterActivity"
345 android:label="@string/custom_list_filter"
Katherine Kuan495db432011-07-06 18:58:46 -0700346 android:theme="@style/ContactListFilterTheme" />
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700347
Jeff Sharkey802b2052009-08-04 14:21:06 -0700348 <activity
Daniel Lehmann72af89f2010-10-18 15:15:59 -0700349 android:name=".activities.ShowOrCreateActivity"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700350 android:theme="@android:style/Theme.Translucent.NoTitleBar">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700351
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700352 <intent-filter>
353 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700354 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700355 <data android:scheme="mailto" />
356 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700357 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700358 </activity>
359
Katherine Kuan9add0e52011-05-10 18:26:15 -0700360
361 <!-- List of groups -->
362 <activity android:name=".activities.GroupBrowserActivity"
363 android:label="@string/contactsGroupsLabel"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700364 android:theme="@style/PeopleTheme"
Katherine Kuan9add0e52011-05-10 18:26:15 -0700365 android:launchMode="singleTop"
366 android:clearTaskOnLaunch="true">
367 <!-- TODO: Remove this temporary intent action name when the fragmentization
368 work is done. -->
369 <intent-filter>
370 <action android:name="com.android.phone.action.GROUPS_LIST" />
371 <category android:name="android.intent.category.DEFAULT" />
372 <category android:name="android.intent.category.TAB" />
373 </intent-filter>
374 </activity>
375
Katherine Kuanfd8cded2011-05-11 11:34:56 -0700376 <!-- Views the details of a single group -->
377 <activity android:name=".activities.GroupDetailActivity"
378 android:label=""
379 android:theme="@style/GroupDetailTheme" />
380
Katherine Kuanc6b8afe2011-06-22 19:03:50 -0700381 <!-- Create a new or edit an existing group -->
382 <activity
383 android:name=".activities.GroupEditorActivity"
384 android:theme="@style/ContactEditorActivityTheme"
385 android:windowSoftInputMode="adjustResize" />
386
Evan Millar0d0ab342009-09-30 19:03:35 -0700387 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700388 temporary hack until we add better framework support. -->
389 <activity
Jeff Sharkeycde73892011-04-07 00:48:02 -0700390 android:name=".quickcontact.QuickContactWindow"
391 android:theme="@style/Theme.QuickContact"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700392 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700393 android:excludeFromRecents="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700394 android:taskAffinity="android.task.quickcontact"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700395 android:windowSoftInputMode="stateUnchanged">
Jeff Sharkey3f177592009-05-18 15:23:12 -0700396
397 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700398 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700399 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800400 <data android:mimeType="vnd.android.cursor.item/contact" />
401 <data android:mimeType="vnd.android.cursor.item/person" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700402 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800403 </activity>
404
Daniel Lehmannaf8e3862010-11-19 15:38:44 -0800405 <!-- Flushes the QuickContact IntentCache -->
406 <receiver android:name=".quickcontact.PackageIntentReceiver">
407 <intent-filter>
408 <action android:name="android.intent.action.PACKAGE_ADDED" />
409 <data android:scheme="package" />
410 </intent-filter>
411 <intent-filter>
412 <action android:name="android.intent.action.PACKAGE_REPLACED" />
413 <data android:scheme="package" />
414 </intent-filter>
415 <intent-filter>
416 <action android:name="android.intent.action.PACKAGE_REMOVED" />
417 <data android:scheme="package" />
418 </intent-filter>
419 <intent-filter>
420 <action android:name="android.intent.action.PACKAGE_CHANGED" />
421 <data android:scheme="package" />
422 </intent-filter>
423 </receiver>
424
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800425 <activity-alias android:name="ContactShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700426 android:targetActivity=".activities.ContactSelectionActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700427 android:label="@string/shortcutContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800428 android:icon="@mipmap/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800429
430 <intent-filter>
431 <action android:name="android.intent.action.CREATE_SHORTCUT" />
432 <category android:name="android.intent.category.DEFAULT" />
433 </intent-filter>
434
435 </activity-alias>
436
Dianne Hackborn333a6152009-05-26 12:46:23 -0700437 <activity-alias android:name="alias.DialShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700438 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700439 android:label="@string/shortcutDialContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800440 android:icon="@mipmap/ic_launcher_shortcut_directdial"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700441 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700442
443 <intent-filter>
444 <action android:name="android.intent.action.CREATE_SHORTCUT" />
445 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200446 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700447 </intent-filter>
448
449 </activity-alias>
450
451 <activity-alias android:name="alias.MessageShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700452 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700453 android:label="@string/shortcutMessageContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800454 android:icon="@mipmap/ic_launcher_shortcut_directmessage"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700455 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700456
457 <intent-filter>
458 <action android:name="android.intent.action.CREATE_SHORTCUT" />
459 <category android:name="android.intent.category.DEFAULT" />
460 </intent-filter>
461
462 </activity-alias>
463
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800464 <activity android:name="CallDetailActivity"
465 android:label="@string/callDetailTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700466 android:theme="@style/CallDetailActivityTheme"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700467 android:taskAffinity="android.task.contacts.phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800468 >
469 <intent-filter>
470 <action android:name="android.intent.action.VIEW" />
471 <category android:name="android.intent.category.DEFAULT" />
472 <data android:mimeType="vnd.android.cursor.item/calls" />
473 </intent-filter>
474 </activity>
475
476 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700477 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800478 android:label="@string/viewContactTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700479 android:theme="@style/ContactDetailActivityTheme">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700480
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800481 <intent-filter android:label="@string/viewContactDesription">
482 <action android:name="android.intent.action.VIEW" />
483 <category android:name="android.intent.category.DEFAULT" />
Daniel Lehmannc90c7052011-03-16 18:42:34 -0700484 <data android:mimeType="vnd.android.cursor.dir/person" />
485 <data android:mimeType="vnd.android.cursor.dir/contact" />
486 <data android:mimeType="vnd.android.cursor.item/person" />
487 <data android:mimeType="vnd.android.cursor.item/contact" />
488 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800489 </intent-filter>
490 </activity>
491
Daniel Lehmannf319cf82010-06-25 17:41:13 -0700492 <!-- Create a new or edit an existing contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700493 <activity
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700494 android:name=".activities.ContactEditorActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700495 android:theme="@style/ContactEditorActivityTheme"
Daniel Lehmann3a120772010-06-21 16:21:35 -0700496 android:windowSoftInputMode="adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700497
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800498 <intent-filter android:label="@string/editContactDescription">
499 <action android:name="android.intent.action.EDIT" />
500 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800501 <data android:mimeType="vnd.android.cursor.item/person" />
502 <data android:mimeType="vnd.android.cursor.item/contact" />
503 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800504 </intent-filter>
505 <intent-filter android:label="@string/insertContactDescription">
506 <action android:name="android.intent.action.INSERT" />
507 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700508 <data android:mimeType="vnd.android.cursor.dir/person" />
509 <data android:mimeType="vnd.android.cursor.dir/contact" />
510 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800511 </intent-filter>
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700512 </activity>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700513
Dmitri Plotnikov43fd1e82011-01-09 11:29:39 -0800514 <activity android:name=".test.FragmentTestActivity">
515 <intent-filter>
516 <category android:name="android.intent.category.TEST" />
517 </intent-filter>
518 </activity>
519
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700520 <!-- Stub service used to keep our process alive long enough for
521 background threads to finish their operations. -->
522 <service
523 android:name=".util.EmptyService"
524 android:exported="false" />
525
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700526 <!-- Service to save a contact -->
527 <service
Dmitri Plotnikov72f2b7a2010-12-03 18:46:31 -0800528 android:name=".ContactSaveService"
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700529 android:exported="false" />
530
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700531 <!-- Views the details of a single contact -->
532 <activity android:name="ContactOptionsActivity"
533 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700534 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700535 <intent-filter>
536 <action android:name="android.intent.action.EDIT" />
537 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800538 </intent-filter>
539 </activity>
540
541 <!-- Attaches a photo to a contact. Started from external applications -->
Dmitri Plotnikov19d51ac2011-01-04 14:30:24 -0800542 <activity android:name=".activities.AttachPhotoActivity"
Daniel Lehmann9442ef42010-11-09 17:35:53 -0800543 android:label="@string/attach_photo_dialog_title"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800544 android:taskAffinity="">
545 <intent-filter>
546 <action android:name="android.intent.action.ATTACH_DATA" />
547 <data android:mimeType="image/*" />
548 <category android:name="android.intent.category.DEFAULT" />
549 </intent-filter>
550 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700551 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800552
Dmitri Plotnikov884e3932010-05-13 19:13:51 -0700553 <!-- Interstitial activity that shows a phone disambig dialog -->
554 <activity android:name="CallContactActivity"
555 android:theme="@android:style/Theme.Translucent">
556 </activity>
557
Katherine Kuan9856fce2011-06-01 10:24:09 -0700558 <!-- Makes .PeopleActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800559 <meta-data
560 android:name="android.app.default_searchable"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700561 android:value=".activities.PeopleActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800562
563
564 <!-- LIVE FOLDERS -->
565 <activity
566 android:name=".ContactsLiveFolders$AllContacts"
567 android:label="@string/liveFolderAll"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800568 android:icon="@mipmap/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800569 <intent-filter>
570 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
571 <category android:name="android.intent.category.DEFAULT" />
572 </intent-filter>
573 </activity>
574
575 <activity
576 android:name=".ContactsLiveFolders$StarredContacts"
577 android:label="@string/liveFolderFavorites"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800578 android:icon="@mipmap/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800579 <intent-filter>
580 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
581 <category android:name="android.intent.category.DEFAULT" />
582 </intent-filter>
583 </activity>
584
585 <activity
586 android:name=".ContactsLiveFolders$PhoneContacts"
587 android:label="@string/liveFolderPhone"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800588 android:icon="@mipmap/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800589 <intent-filter>
590 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
591 <category android:name="android.intent.category.DEFAULT" />
592 </intent-filter>
593 </activity>
594
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700595 <!-- vCard related -->
596 <activity android:name=".vcard.ImportVCardActivity"
Daisuke Miyakawa4baff1e2011-04-07 14:28:37 -0700597 android:configChanges="orientation|screenSize|keyboardHidden"
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900598 android:theme="@style/BackgroundOnly">
599 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800600 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700601 <data android:mimeType="text/directory" />
Daisuke Miyakawa92ba98a2010-06-22 09:12:19 +0900602 <data android:mimeType="text/vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800603 <data android:mimeType="text/x-vcard" />
604 <category android:name="android.intent.category.DEFAULT" />
605 </intent-filter>
606 </activity>
607
Daisuke Miyakawaab596602010-11-18 17:28:02 -0800608 <activity android:name=".vcard.CancelActivity"
Daisuke Miyakawa18b51902010-08-19 14:13:38 -0700609 android:theme="@style/BackgroundOnly" />
610
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700611 <activity android:name=".vcard.SelectAccountActivity"
Daisuke Miyakawa6d2f27f2010-04-21 16:11:38 +0900612 android:theme="@style/BackgroundOnly" />
613
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700614 <activity android:name=".vcard.ExportVCardActivity"
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700615 android:theme="@style/BackgroundOnly" />
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700616
Daisuke Miyakawad8fb81a2010-06-08 17:44:22 -0700617 <service
618 android:name=".vcard.VCardService"
619 android:exported="false" />
620
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700621 <!-- Pinned header list demo -->
622 <activity android:name=".widget.PinnedHeaderListDemoActivity">
623 <intent-filter>
624 <action android:name="android.intent.action.MAIN" />
625 <category android:name="android.intent.category.DEFAULT" />
626 </intent-filter>
627 </activity>
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700628
629 <!-- The widget that shows details and the social stream of a contact -->
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700630 <receiver android:name=".socialwidget.SocialWidgetProvider"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700631 android:label="@string/social_widget_label" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700632 <intent-filter>
633 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
634 </intent-filter>
635 <meta-data android:name="android.appwidget.provider"
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700636 android:resource="@xml/social_widget_info" />
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700637 </receiver>
638
Flavio Lerda87bd5362011-06-30 12:20:43 +0100639 <receiver android:name=".calllog.NewVoicemailReceiver">
640 <intent-filter>
641 <action android:name="android.intent.action.NEW_VOICEMAIL" />
642 <data
643 android:scheme="content"
644 android:host="com.android.voicemail"
645 />
646 </intent-filter>
647 </receiver>
648
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700649 <activity
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700650 android:name=".socialwidget.SocialWidgetConfigureActivity"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700651 android:theme="@android:style/Theme.Translucent.NoTitleBar" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700652 <intent-filter>
653 <action android:name="android.intent.action.APPWIDGET_PICK" />
654 </intent-filter>
655 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800656 </application>
657</manifest>