blob: d298fbee052151052e8cad99d832c1520dd053d8 [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" />
31 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
32 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
33 <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" />
Daisuke Miyakawa2991dd92009-05-19 08:32:17 +090034 <uses-permission android:name="android.permission.WAKE_LOCK" />
Daisuke Miyakawa72c50522009-07-07 15:37:59 -070035 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Dmitri Plotnikovdaa2d5c2010-01-29 17:44:20 -080036 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Fred Quintana104b7922009-07-22 20:01:15 -070037 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
Nicolas Catania9bcf4702009-11-06 13:19:43 -080038 <uses-permission android:name="android.permission.VIBRATE" />
Dmitri Plotnikov99811722010-11-01 18:21:22 -070039 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080040
41 <application
Dmitri Plotnikovf049ff02010-11-29 10:15:24 -080042 android:name="com.android.contacts.ContactsApplication"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080043 android:label="@string/contactsList"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -080044 android:icon="@mipmap/ic_launcher_contacts"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080045 android:process="android.process.acore"
46 android:taskAffinity="android.task.contacts"
Daniel Lehmann57b5aa12010-09-23 17:42:23 -070047 android:hardwareAccelerated="true"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080048 >
49
Daniel Lehmannf1054f12011-05-05 21:06:42 -070050 <!-- A virtual 12 key dialer -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -070051 <activity android:name=".activities.DialpadActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080052 android:launchMode="singleTop"
53 >
54 <intent-filter>
55 <action android:name="com.android.phone.action.TOUCH_DIALER" />
56 <category android:name="android.intent.category.DEFAULT" />
57 <category android:name="android.intent.category.TAB" />
58 </intent-filter>
59 </activity>
60
Daniel Lehmannf1054f12011-05-05 21:06:42 -070061 <!-- A list of recent calls -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -070062 <activity android:name=".activities.CallLogActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080063 android:label="@string/recentCallsIconLabel"
64 >
65 <intent-filter>
66 <action android:name="com.android.phone.action.RECENT_CALLS" />
67 <category android:name="android.intent.category.DEFAULT" />
68 <category android:name="android.intent.category.TAB" />
69 </intent-filter>
70 </activity>
71
Daniel Lehmanne9b196e2010-10-26 12:17:39 -070072 <!-- Intercept Dialer Intents for devices without a phone.
73 This activity should have the same intent filters as the DialtactsActivity,
74 so that its capturing the same events. Omit android.intent.category.LAUNCHER, because we
75 don't want this to show up in the Launcher. The priorities of the intent-filters
76 are set lower, so that the user does not see a disambig dialog -->
77 <activity
78 android:name=".activities.NonPhoneActivity"
79 android:theme="@style/NonPhoneActivityTheme"
80 >
81 <intent-filter android:priority="-1">
82 <action android:name="android.intent.action.DIAL" />
83 <category android:name="android.intent.category.DEFAULT" />
84 <category android:name="android.intent.category.BROWSABLE" />
85 <data android:mimeType="vnd.android.cursor.item/phone" />
86 <data android:mimeType="vnd.android.cursor.item/person" />
87 </intent-filter>
88 <intent-filter android:priority="-1">
89 <action android:name="android.intent.action.DIAL" />
90 <category android:name="android.intent.category.DEFAULT" />
91 <category android:name="android.intent.category.BROWSABLE" />
92 <data android:scheme="voicemail" />
93 </intent-filter>
94 <intent-filter android:priority="-1">
95 <action android:name="android.intent.action.DIAL" />
96 <category android:name="android.intent.category.DEFAULT" />
97 </intent-filter>
98 <intent-filter android:priority="-1">
99 <action android:name="android.intent.action.MAIN" />
100 <category android:name="android.intent.category.DEFAULT" />
101 <category android:name="android.intent.category.BROWSABLE" />
102 </intent-filter>
103 <intent-filter android:priority="-1">
104 <action android:name="android.intent.action.VIEW" />
105 <action android:name="android.intent.action.DIAL" />
106 <category android:name="android.intent.category.DEFAULT" />
107 <category android:name="android.intent.category.BROWSABLE" />
108 <data android:scheme="tel" />
109 </intent-filter>
110 <intent-filter android:priority="-1">
111 <action android:name="android.intent.action.VIEW" />
112 <category android:name="android.intent.category.DEFAULT" />
113 <category android:name="android.intent.category.BROWSABLE" />
114 <data android:mimeType="vnd.android.cursor.dir/calls" />
115 </intent-filter>
116 <intent-filter android:priority="-1">
117 <action android:name="android.intent.action.CALL_BUTTON" />
118 <category android:name="android.intent.category.DEFAULT" />
119 <category android:name="android.intent.category.BROWSABLE" />
120 </intent-filter>
121 </activity>
122
Daniel Lehmann7675e122010-04-21 17:31:11 -0700123 <!-- Tab container for all tabs -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -0700124 <activity android:name=".activities.DialtactsActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800125 android:label="@string/launcherDialer"
Nicolas Catania177d88f2009-09-27 15:15:05 -0700126 android:theme="@style/DialtactsTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800127 android:launchMode="singleTask"
128 android:clearTaskOnLaunch="true"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800129 android:icon="@mipmap/ic_launcher_phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800130 android:screenOrientation="nosensor"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700131 android:enabled="@*android:bool/config_voice_capable"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700132 android:taskAffinity="android.task.contacts.phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800133 >
134 <intent-filter>
135 <action android:name="android.intent.action.DIAL" />
136 <category android:name="android.intent.category.DEFAULT" />
137 <category android:name="android.intent.category.BROWSABLE" />
138 <data android:mimeType="vnd.android.cursor.item/phone" />
139 <data android:mimeType="vnd.android.cursor.item/person" />
140 </intent-filter>
141 <intent-filter>
142 <action android:name="android.intent.action.DIAL" />
143 <category android:name="android.intent.category.DEFAULT" />
144 <category android:name="android.intent.category.BROWSABLE" />
145 <data android:scheme="voicemail" />
146 </intent-filter>
147 <intent-filter>
148 <action android:name="android.intent.action.DIAL" />
149 <category android:name="android.intent.category.DEFAULT" />
150 </intent-filter>
151 <intent-filter>
152 <action android:name="android.intent.action.MAIN" />
153 <category android:name="android.intent.category.DEFAULT" />
154 <category android:name="android.intent.category.LAUNCHER" />
155 <category android:name="android.intent.category.BROWSABLE" />
156 </intent-filter>
157 <intent-filter>
158 <action android:name="android.intent.action.VIEW" />
159 <action android:name="android.intent.action.DIAL" />
160 <category android:name="android.intent.category.DEFAULT" />
161 <category android:name="android.intent.category.BROWSABLE" />
162 <data android:scheme="tel" />
163 </intent-filter>
164 <intent-filter>
165 <action android:name="android.intent.action.VIEW" />
166 <category android:name="android.intent.category.DEFAULT" />
167 <category android:name="android.intent.category.BROWSABLE" />
168 <data android:mimeType="vnd.android.cursor.dir/calls" />
169 </intent-filter>
170 <intent-filter>
171 <action android:name="android.intent.action.CALL_BUTTON" />
172 <category android:name="android.intent.category.DEFAULT" />
173 <category android:name="android.intent.category.BROWSABLE" />
174 </intent-filter>
175 </activity>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700176
Katherine Kuan9856fce2011-06-01 10:24:09 -0700177 <!-- The main Contacts activity with the contact list, favorites, and groups. -->
178 <activity android:name=".activities.PeopleActivity"
179 android:label="@string/people"
180 android:theme="@style/PeopleTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800181 android:clearTaskOnLaunch="true"
182 android:launchMode="singleTop"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800183 >
184 <intent-filter>
185 <action android:name="android.intent.action.MAIN" />
186 <category android:name="android.intent.category.DEFAULT" />
187 <category android:name="android.intent.category.LAUNCHER" />
Dmitri Plotnikov032bb362009-05-06 17:05:39 -0700188 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800189 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800190 <intent-filter>
191 <action android:name="com.android.contacts.action.LIST_DEFAULT" />
192 <category android:name="android.intent.category.DEFAULT" />
193 <category android:name="android.intent.category.TAB" />
194 </intent-filter>
195
196 <intent-filter>
197 <action android:name="com.android.contacts.action.LIST_CONTACTS" />
198 <category android:name="android.intent.category.DEFAULT" />
199 <category android:name="android.intent.category.TAB" />
200 </intent-filter>
201
202 <intent-filter>
203 <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" />
204 <category android:name="android.intent.category.DEFAULT" />
205 <category android:name="android.intent.category.TAB" />
206 </intent-filter>
207
208 <intent-filter>
209 <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" />
210 <category android:name="android.intent.category.DEFAULT" />
211 <category android:name="android.intent.category.TAB" />
212 </intent-filter>
213
214 <intent-filter android:label="@string/starredList">
215 <action android:name="com.android.contacts.action.LIST_STARRED" />
216 <category android:name="android.intent.category.DEFAULT" />
217 <category android:name="android.intent.category.TAB" />
218 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700219
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800220 <intent-filter android:label="@string/frequentList">
221 <action android:name="com.android.contacts.action.LIST_FREQUENT" />
222 <category android:name="android.intent.category.DEFAULT" />
223 <category android:name="android.intent.category.TAB" />
224 </intent-filter>
225
226 <intent-filter android:label="@string/strequentList">
227 <action android:name="com.android.contacts.action.LIST_STREQUENT" />
228 <category android:name="android.intent.category.DEFAULT" />
229 <category android:name="android.intent.category.TAB" />
230 </intent-filter>
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700231
232 <intent-filter>
233 <action android:name="android.intent.action.SEARCH" />
234 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov0edd4072011-01-19 10:10:10 -0800235 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700236 </intent-filter>
237
238 <intent-filter>
Dmitri Plotnikov30b99712011-01-20 09:29:44 -0800239 <action android:name="android.intent.action.SEARCH" />
240 <category android:name="android.intent.category.DEFAULT" />
241 </intent-filter>
242
243 <intent-filter>
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700244 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
245 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800246 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700247 </intent-filter>
248
249 <meta-data android:name="android.app.searchable"
250 android:resource="@xml/searchable"
251 />
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700252 </activity>
253
254 <activity android:name=".activities.ContactSelectionActivity"
255 android:label="@string/contactsList"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700256 android:theme="@style/ContactPickerTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800257 android:launchMode="singleTop"
258 android:clearTaskOnLaunch="true"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700259 >
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800260 <intent-filter>
261 <action android:name="android.intent.action.INSERT_OR_EDIT" />
262 <category android:name="android.intent.category.DEFAULT" />
263 <data android:mimeType="vnd.android.cursor.item/person" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700264 <data android:mimeType="vnd.android.cursor.item/contact" />
265 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800266 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700267
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800268 <intent-filter>
269 <action android:name="android.intent.action.PICK" />
270 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800271 <data android:mimeType="vnd.android.cursor.dir/contact" />
272 <data android:mimeType="vnd.android.cursor.dir/person" />
273 <data android:mimeType="vnd.android.cursor.dir/phone_v2" />
274 <data android:mimeType="vnd.android.cursor.dir/phone" />
275 <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" />
276 <data android:mimeType="vnd.android.cursor.dir/postal-address" />
Daniel Lehmannc86ace72011-03-23 21:04:29 -0700277 <data android:mimeType="vnd.android.cursor.dir/email_v2" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800278 </intent-filter>
279
280 <intent-filter>
281 <action android:name="android.intent.action.GET_CONTENT" />
282 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800283 <data android:mimeType="vnd.android.cursor.item/contact" />
284 <data android:mimeType="vnd.android.cursor.item/person" />
285 <data android:mimeType="vnd.android.cursor.item/phone_v2" />
286 <data android:mimeType="vnd.android.cursor.item/phone" />
287 <data android:mimeType="vnd.android.cursor.item/postal-address_v2" />
288 <data android:mimeType="vnd.android.cursor.item/postal-address" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800289 </intent-filter>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700290 </activity>
291
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700292 <!-- Backwards compatibility: somebody may have hard coded this activity name -->
293 <activity-alias android:name="ContactsListActivity"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700294 android:targetActivity=".activities.PeopleActivity"
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700295 />
296
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700297 <!-- An activity for joining contacts -->
Dmitri Plotnikovd21ddb22010-11-03 14:25:59 -0700298 <activity android:name=".activities.JoinContactActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700299 android:theme="@style/JoinContactActivityTheme"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700300 android:clearTaskOnLaunch="true"
301 >
302 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700303 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700304 <category android:name="android.intent.category.DEFAULT" />
305 </intent-filter>
306 </activity>
307
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700308 <!-- Used to set options -->
Daniel Lehmann10105742010-07-15 17:35:57 -0700309 <activity
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700310 android:name=".preference.ContactsPreferenceActivity"
311 android:label="@string/activity_title_settings"
Daniel Lehmann10105742010-07-15 17:35:57 -0700312 android:theme="@style/ContactsPreferencesTheme" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700313
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700314 <!-- Used to select display and sync groups -->
315 <activity
316 android:name=".list.CustomContactListFilterActivity"
317 android:label="@string/custom_list_filter"
Dmitri Plotnikova4d6a3b2010-10-06 18:04:31 -0700318 android:theme="@style/CustomContactListFilterTheme" />
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700319
Jeff Sharkey802b2052009-08-04 14:21:06 -0700320 <activity
Daniel Lehmann72af89f2010-10-18 15:15:59 -0700321 android:name=".activities.ShowOrCreateActivity"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700322 android:theme="@android:style/Theme.Translucent.NoTitleBar">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700323
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700324 <intent-filter>
325 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700326 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700327 <data android:scheme="mailto" />
328 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700329 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700330 </activity>
331
Katherine Kuan9add0e52011-05-10 18:26:15 -0700332
333 <!-- List of groups -->
334 <activity android:name=".activities.GroupBrowserActivity"
335 android:label="@string/contactsGroupsLabel"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700336 android:theme="@style/PeopleTheme"
Katherine Kuan9add0e52011-05-10 18:26:15 -0700337 android:launchMode="singleTop"
338 android:clearTaskOnLaunch="true">
339 <!-- TODO: Remove this temporary intent action name when the fragmentization
340 work is done. -->
341 <intent-filter>
342 <action android:name="com.android.phone.action.GROUPS_LIST" />
343 <category android:name="android.intent.category.DEFAULT" />
344 <category android:name="android.intent.category.TAB" />
345 </intent-filter>
346 </activity>
347
Katherine Kuanfd8cded2011-05-11 11:34:56 -0700348 <!-- Views the details of a single group -->
349 <activity android:name=".activities.GroupDetailActivity"
350 android:label=""
351 android:theme="@style/GroupDetailTheme" />
352
Evan Millar0d0ab342009-09-30 19:03:35 -0700353 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700354 temporary hack until we add better framework support. -->
355 <activity
Jeff Sharkeycde73892011-04-07 00:48:02 -0700356 android:name=".quickcontact.QuickContactWindow"
357 android:theme="@style/Theme.QuickContact"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700358 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700359 android:excludeFromRecents="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700360 android:taskAffinity="android.task.quickcontact"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700361 android:windowSoftInputMode="stateUnchanged">
Jeff Sharkey3f177592009-05-18 15:23:12 -0700362
363 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700364 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700365 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800366 <data android:mimeType="vnd.android.cursor.item/contact" />
367 <data android:mimeType="vnd.android.cursor.item/person" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700368 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800369 </activity>
370
Daniel Lehmannaf8e3862010-11-19 15:38:44 -0800371 <!-- Flushes the QuickContact IntentCache -->
372 <receiver android:name=".quickcontact.PackageIntentReceiver">
373 <intent-filter>
374 <action android:name="android.intent.action.PACKAGE_ADDED" />
375 <data android:scheme="package" />
376 </intent-filter>
377 <intent-filter>
378 <action android:name="android.intent.action.PACKAGE_REPLACED" />
379 <data android:scheme="package" />
380 </intent-filter>
381 <intent-filter>
382 <action android:name="android.intent.action.PACKAGE_REMOVED" />
383 <data android:scheme="package" />
384 </intent-filter>
385 <intent-filter>
386 <action android:name="android.intent.action.PACKAGE_CHANGED" />
387 <data android:scheme="package" />
388 </intent-filter>
389 </receiver>
390
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800391 <activity-alias android:name="ContactShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700392 android:targetActivity=".activities.ContactSelectionActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700393 android:label="@string/shortcutContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800394 android:icon="@mipmap/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800395
396 <intent-filter>
397 <action android:name="android.intent.action.CREATE_SHORTCUT" />
398 <category android:name="android.intent.category.DEFAULT" />
399 </intent-filter>
400
401 </activity-alias>
402
Dianne Hackborn333a6152009-05-26 12:46:23 -0700403 <activity-alias android:name="alias.DialShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700404 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700405 android:label="@string/shortcutDialContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800406 android:icon="@mipmap/ic_launcher_shortcut_directdial"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700407 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700408
409 <intent-filter>
410 <action android:name="android.intent.action.CREATE_SHORTCUT" />
411 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200412 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700413 </intent-filter>
414
415 </activity-alias>
416
417 <activity-alias android:name="alias.MessageShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700418 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700419 android:label="@string/shortcutMessageContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800420 android:icon="@mipmap/ic_launcher_shortcut_directmessage"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700421 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700422
423 <intent-filter>
424 <action android:name="android.intent.action.CREATE_SHORTCUT" />
425 <category android:name="android.intent.category.DEFAULT" />
426 </intent-filter>
427
428 </activity-alias>
429
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800430 <activity android:name="CallDetailActivity"
431 android:label="@string/callDetailTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700432 android:theme="@style/CallDetailActivityTheme"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700433 android:taskAffinity="android.task.contacts.phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800434 >
435 <intent-filter>
436 <action android:name="android.intent.action.VIEW" />
437 <category android:name="android.intent.category.DEFAULT" />
438 <data android:mimeType="vnd.android.cursor.item/calls" />
439 </intent-filter>
440 </activity>
441
442 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700443 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800444 android:label="@string/viewContactTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700445 android:theme="@style/ContactDetailActivityTheme">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700446
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800447 <intent-filter android:label="@string/viewContactDesription">
448 <action android:name="android.intent.action.VIEW" />
449 <category android:name="android.intent.category.DEFAULT" />
Daniel Lehmannc90c7052011-03-16 18:42:34 -0700450 <data android:mimeType="vnd.android.cursor.dir/person" />
451 <data android:mimeType="vnd.android.cursor.dir/contact" />
452 <data android:mimeType="vnd.android.cursor.item/person" />
453 <data android:mimeType="vnd.android.cursor.item/contact" />
454 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800455 </intent-filter>
456 </activity>
457
Daniel Lehmannf319cf82010-06-25 17:41:13 -0700458 <!-- Create a new or edit an existing contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700459 <activity
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700460 android:name=".activities.ContactEditorActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700461 android:theme="@style/ContactEditorActivityTheme"
Daniel Lehmann3a120772010-06-21 16:21:35 -0700462 android:windowSoftInputMode="adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700463
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800464 <intent-filter android:label="@string/editContactDescription">
465 <action android:name="android.intent.action.EDIT" />
466 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800467 <data android:mimeType="vnd.android.cursor.item/person" />
468 <data android:mimeType="vnd.android.cursor.item/contact" />
469 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800470 </intent-filter>
471 <intent-filter android:label="@string/insertContactDescription">
472 <action android:name="android.intent.action.INSERT" />
473 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700474 <data android:mimeType="vnd.android.cursor.dir/person" />
475 <data android:mimeType="vnd.android.cursor.dir/contact" />
476 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800477 </intent-filter>
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700478 </activity>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700479
Dmitri Plotnikov43fd1e82011-01-09 11:29:39 -0800480 <activity android:name=".test.FragmentTestActivity">
481 <intent-filter>
482 <category android:name="android.intent.category.TEST" />
483 </intent-filter>
484 </activity>
485
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700486 <!-- Stub service used to keep our process alive long enough for
487 background threads to finish their operations. -->
488 <service
489 android:name=".util.EmptyService"
490 android:exported="false" />
491
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700492 <!-- Service to save a contact -->
493 <service
Dmitri Plotnikov72f2b7a2010-12-03 18:46:31 -0800494 android:name=".ContactSaveService"
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700495 android:exported="false" />
496
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700497 <!-- Views the details of a single contact -->
498 <activity android:name="ContactOptionsActivity"
499 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700500 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700501 <intent-filter>
502 <action android:name="android.intent.action.EDIT" />
503 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800504 </intent-filter>
505 </activity>
506
507 <!-- Attaches a photo to a contact. Started from external applications -->
Dmitri Plotnikov19d51ac2011-01-04 14:30:24 -0800508 <activity android:name=".activities.AttachPhotoActivity"
Daniel Lehmann9442ef42010-11-09 17:35:53 -0800509 android:label="@string/attach_photo_dialog_title"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800510 android:taskAffinity="">
511 <intent-filter>
512 <action android:name="android.intent.action.ATTACH_DATA" />
513 <data android:mimeType="image/*" />
514 <category android:name="android.intent.category.DEFAULT" />
515 </intent-filter>
516 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700517 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800518
Dmitri Plotnikov884e3932010-05-13 19:13:51 -0700519 <!-- Interstitial activity that shows a phone disambig dialog -->
520 <activity android:name="CallContactActivity"
521 android:theme="@android:style/Theme.Translucent">
522 </activity>
523
Katherine Kuan9856fce2011-06-01 10:24:09 -0700524 <!-- Makes .PeopleActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800525 <meta-data
526 android:name="android.app.default_searchable"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700527 android:value=".activities.PeopleActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800528
529
530 <!-- LIVE FOLDERS -->
531 <activity
532 android:name=".ContactsLiveFolders$AllContacts"
533 android:label="@string/liveFolderAll"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800534 android:icon="@mipmap/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800535 <intent-filter>
536 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
537 <category android:name="android.intent.category.DEFAULT" />
538 </intent-filter>
539 </activity>
540
541 <activity
542 android:name=".ContactsLiveFolders$StarredContacts"
543 android:label="@string/liveFolderFavorites"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800544 android:icon="@mipmap/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800545 <intent-filter>
546 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
547 <category android:name="android.intent.category.DEFAULT" />
548 </intent-filter>
549 </activity>
550
551 <activity
552 android:name=".ContactsLiveFolders$PhoneContacts"
553 android:label="@string/liveFolderPhone"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800554 android:icon="@mipmap/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800555 <intent-filter>
556 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
557 <category android:name="android.intent.category.DEFAULT" />
558 </intent-filter>
559 </activity>
560
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700561 <!-- vCard related -->
562 <activity android:name=".vcard.ImportVCardActivity"
Daisuke Miyakawa4baff1e2011-04-07 14:28:37 -0700563 android:configChanges="orientation|screenSize|keyboardHidden"
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900564 android:theme="@style/BackgroundOnly">
565 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800566 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700567 <data android:mimeType="text/directory" />
Daisuke Miyakawa92ba98a2010-06-22 09:12:19 +0900568 <data android:mimeType="text/vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800569 <data android:mimeType="text/x-vcard" />
570 <category android:name="android.intent.category.DEFAULT" />
571 </intent-filter>
572 </activity>
573
Daisuke Miyakawaab596602010-11-18 17:28:02 -0800574 <activity android:name=".vcard.CancelActivity"
Daisuke Miyakawa18b51902010-08-19 14:13:38 -0700575 android:theme="@style/BackgroundOnly" />
576
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700577 <activity android:name=".vcard.SelectAccountActivity"
Daisuke Miyakawa6d2f27f2010-04-21 16:11:38 +0900578 android:theme="@style/BackgroundOnly" />
579
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700580 <activity android:name=".vcard.ExportVCardActivity"
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700581 android:theme="@style/BackgroundOnly" />
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700582
Daisuke Miyakawad8fb81a2010-06-08 17:44:22 -0700583 <service
584 android:name=".vcard.VCardService"
585 android:exported="false" />
586
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700587 <!-- Pinned header list demo -->
588 <activity android:name=".widget.PinnedHeaderListDemoActivity">
589 <intent-filter>
590 <action android:name="android.intent.action.MAIN" />
591 <category android:name="android.intent.category.DEFAULT" />
592 </intent-filter>
593 </activity>
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700594
595 <!-- The widget that shows details and the social stream of a contact -->
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700596 <receiver android:name=".socialwidget.SocialWidgetProvider"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700597 android:label="@string/social_widget_label" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700598 <intent-filter>
599 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
600 </intent-filter>
601 <meta-data android:name="android.appwidget.provider"
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700602 android:resource="@xml/social_widget_info" />
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700603 </receiver>
604
605 <activity
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700606 android:name=".socialwidget.SocialWidgetConfigureActivity"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700607 android:theme="@android:style/Theme.Translucent.NoTitleBar" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700608 <intent-filter>
609 <action android:name="android.intent.action.APPWIDGET_PICK" />
610 </intent-filter>
611 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800612 </application>
613</manifest>