blob: f4c6227668e74546fd205d5a67ac681547a49094 [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
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700301 <!-- An activity for joining contacts -->
Dmitri Plotnikovd21ddb22010-11-03 14:25:59 -0700302 <activity android:name=".activities.JoinContactActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700303 android:theme="@style/JoinContactActivityTheme"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700304 android:clearTaskOnLaunch="true"
305 >
306 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700307 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700308 <category android:name="android.intent.category.DEFAULT" />
309 </intent-filter>
310 </activity>
311
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700312 <!-- Used to set options -->
Daniel Lehmann10105742010-07-15 17:35:57 -0700313 <activity
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700314 android:name=".preference.ContactsPreferenceActivity"
315 android:label="@string/activity_title_settings"
Daniel Lehmann10105742010-07-15 17:35:57 -0700316 android:theme="@style/ContactsPreferencesTheme" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700317
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700318 <!-- Used to select display and sync groups -->
319 <activity
320 android:name=".list.CustomContactListFilterActivity"
321 android:label="@string/custom_list_filter"
Dmitri Plotnikova4d6a3b2010-10-06 18:04:31 -0700322 android:theme="@style/CustomContactListFilterTheme" />
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700323
Jeff Sharkey802b2052009-08-04 14:21:06 -0700324 <activity
Daniel Lehmann72af89f2010-10-18 15:15:59 -0700325 android:name=".activities.ShowOrCreateActivity"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700326 android:theme="@android:style/Theme.Translucent.NoTitleBar">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700327
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700328 <intent-filter>
329 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700330 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700331 <data android:scheme="mailto" />
332 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700333 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700334 </activity>
335
Katherine Kuan9add0e52011-05-10 18:26:15 -0700336
337 <!-- List of groups -->
338 <activity android:name=".activities.GroupBrowserActivity"
339 android:label="@string/contactsGroupsLabel"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700340 android:theme="@style/PeopleTheme"
Katherine Kuan9add0e52011-05-10 18:26:15 -0700341 android:launchMode="singleTop"
342 android:clearTaskOnLaunch="true">
343 <!-- TODO: Remove this temporary intent action name when the fragmentization
344 work is done. -->
345 <intent-filter>
346 <action android:name="com.android.phone.action.GROUPS_LIST" />
347 <category android:name="android.intent.category.DEFAULT" />
348 <category android:name="android.intent.category.TAB" />
349 </intent-filter>
350 </activity>
351
Katherine Kuanfd8cded2011-05-11 11:34:56 -0700352 <!-- Views the details of a single group -->
353 <activity android:name=".activities.GroupDetailActivity"
354 android:label=""
355 android:theme="@style/GroupDetailTheme" />
356
Katherine Kuanc6b8afe2011-06-22 19:03:50 -0700357 <!-- Create a new or edit an existing group -->
358 <activity
359 android:name=".activities.GroupEditorActivity"
360 android:theme="@style/ContactEditorActivityTheme"
361 android:windowSoftInputMode="adjustResize" />
362
Evan Millar0d0ab342009-09-30 19:03:35 -0700363 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700364 temporary hack until we add better framework support. -->
365 <activity
Jeff Sharkeycde73892011-04-07 00:48:02 -0700366 android:name=".quickcontact.QuickContactWindow"
367 android:theme="@style/Theme.QuickContact"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700368 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700369 android:excludeFromRecents="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700370 android:taskAffinity="android.task.quickcontact"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700371 android:windowSoftInputMode="stateUnchanged">
Jeff Sharkey3f177592009-05-18 15:23:12 -0700372
373 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700374 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700375 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800376 <data android:mimeType="vnd.android.cursor.item/contact" />
377 <data android:mimeType="vnd.android.cursor.item/person" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700378 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800379 </activity>
380
Daniel Lehmannaf8e3862010-11-19 15:38:44 -0800381 <!-- Flushes the QuickContact IntentCache -->
382 <receiver android:name=".quickcontact.PackageIntentReceiver">
383 <intent-filter>
384 <action android:name="android.intent.action.PACKAGE_ADDED" />
385 <data android:scheme="package" />
386 </intent-filter>
387 <intent-filter>
388 <action android:name="android.intent.action.PACKAGE_REPLACED" />
389 <data android:scheme="package" />
390 </intent-filter>
391 <intent-filter>
392 <action android:name="android.intent.action.PACKAGE_REMOVED" />
393 <data android:scheme="package" />
394 </intent-filter>
395 <intent-filter>
396 <action android:name="android.intent.action.PACKAGE_CHANGED" />
397 <data android:scheme="package" />
398 </intent-filter>
399 </receiver>
400
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800401 <activity-alias android:name="ContactShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700402 android:targetActivity=".activities.ContactSelectionActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700403 android:label="@string/shortcutContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800404 android:icon="@mipmap/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800405
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
Dianne Hackborn333a6152009-05-26 12:46:23 -0700413 <activity-alias android:name="alias.DialShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700414 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700415 android:label="@string/shortcutDialContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800416 android:icon="@mipmap/ic_launcher_shortcut_directdial"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700417 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700418
419 <intent-filter>
420 <action android:name="android.intent.action.CREATE_SHORTCUT" />
421 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200422 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700423 </intent-filter>
424
425 </activity-alias>
426
427 <activity-alias android:name="alias.MessageShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700428 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700429 android:label="@string/shortcutMessageContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800430 android:icon="@mipmap/ic_launcher_shortcut_directmessage"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700431 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700432
433 <intent-filter>
434 <action android:name="android.intent.action.CREATE_SHORTCUT" />
435 <category android:name="android.intent.category.DEFAULT" />
436 </intent-filter>
437
438 </activity-alias>
439
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800440 <activity android:name="CallDetailActivity"
441 android:label="@string/callDetailTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700442 android:theme="@style/CallDetailActivityTheme"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700443 android:taskAffinity="android.task.contacts.phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800444 >
445 <intent-filter>
446 <action android:name="android.intent.action.VIEW" />
447 <category android:name="android.intent.category.DEFAULT" />
448 <data android:mimeType="vnd.android.cursor.item/calls" />
449 </intent-filter>
450 </activity>
451
452 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700453 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800454 android:label="@string/viewContactTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700455 android:theme="@style/ContactDetailActivityTheme">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700456
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800457 <intent-filter android:label="@string/viewContactDesription">
458 <action android:name="android.intent.action.VIEW" />
459 <category android:name="android.intent.category.DEFAULT" />
Daniel Lehmannc90c7052011-03-16 18:42:34 -0700460 <data android:mimeType="vnd.android.cursor.dir/person" />
461 <data android:mimeType="vnd.android.cursor.dir/contact" />
462 <data android:mimeType="vnd.android.cursor.item/person" />
463 <data android:mimeType="vnd.android.cursor.item/contact" />
464 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800465 </intent-filter>
466 </activity>
467
Daniel Lehmannf319cf82010-06-25 17:41:13 -0700468 <!-- Create a new or edit an existing contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700469 <activity
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700470 android:name=".activities.ContactEditorActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700471 android:theme="@style/ContactEditorActivityTheme"
Daniel Lehmann3a120772010-06-21 16:21:35 -0700472 android:windowSoftInputMode="adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700473
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800474 <intent-filter android:label="@string/editContactDescription">
475 <action android:name="android.intent.action.EDIT" />
476 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800477 <data android:mimeType="vnd.android.cursor.item/person" />
478 <data android:mimeType="vnd.android.cursor.item/contact" />
479 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800480 </intent-filter>
481 <intent-filter android:label="@string/insertContactDescription">
482 <action android:name="android.intent.action.INSERT" />
483 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -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.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800487 </intent-filter>
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700488 </activity>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700489
Dmitri Plotnikov43fd1e82011-01-09 11:29:39 -0800490 <activity android:name=".test.FragmentTestActivity">
491 <intent-filter>
492 <category android:name="android.intent.category.TEST" />
493 </intent-filter>
494 </activity>
495
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700496 <!-- Stub service used to keep our process alive long enough for
497 background threads to finish their operations. -->
498 <service
499 android:name=".util.EmptyService"
500 android:exported="false" />
501
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700502 <!-- Service to save a contact -->
503 <service
Dmitri Plotnikov72f2b7a2010-12-03 18:46:31 -0800504 android:name=".ContactSaveService"
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700505 android:exported="false" />
506
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700507 <!-- Views the details of a single contact -->
508 <activity android:name="ContactOptionsActivity"
509 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700510 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700511 <intent-filter>
512 <action android:name="android.intent.action.EDIT" />
513 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800514 </intent-filter>
515 </activity>
516
517 <!-- Attaches a photo to a contact. Started from external applications -->
Dmitri Plotnikov19d51ac2011-01-04 14:30:24 -0800518 <activity android:name=".activities.AttachPhotoActivity"
Daniel Lehmann9442ef42010-11-09 17:35:53 -0800519 android:label="@string/attach_photo_dialog_title"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800520 android:taskAffinity="">
521 <intent-filter>
522 <action android:name="android.intent.action.ATTACH_DATA" />
523 <data android:mimeType="image/*" />
524 <category android:name="android.intent.category.DEFAULT" />
525 </intent-filter>
526 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700527 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800528
Dmitri Plotnikov884e3932010-05-13 19:13:51 -0700529 <!-- Interstitial activity that shows a phone disambig dialog -->
530 <activity android:name="CallContactActivity"
531 android:theme="@android:style/Theme.Translucent">
532 </activity>
533
Katherine Kuan9856fce2011-06-01 10:24:09 -0700534 <!-- Makes .PeopleActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800535 <meta-data
536 android:name="android.app.default_searchable"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700537 android:value=".activities.PeopleActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800538
539
540 <!-- LIVE FOLDERS -->
541 <activity
542 android:name=".ContactsLiveFolders$AllContacts"
543 android:label="@string/liveFolderAll"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800544 android:icon="@mipmap/ic_launcher_folder_live_contacts">
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$StarredContacts"
553 android:label="@string/liveFolderFavorites"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800554 android:icon="@mipmap/ic_launcher_folder_live_contacts_starred">
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
561 <activity
562 android:name=".ContactsLiveFolders$PhoneContacts"
563 android:label="@string/liveFolderPhone"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800564 android:icon="@mipmap/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800565 <intent-filter>
566 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
567 <category android:name="android.intent.category.DEFAULT" />
568 </intent-filter>
569 </activity>
570
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700571 <!-- vCard related -->
572 <activity android:name=".vcard.ImportVCardActivity"
Daisuke Miyakawa4baff1e2011-04-07 14:28:37 -0700573 android:configChanges="orientation|screenSize|keyboardHidden"
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900574 android:theme="@style/BackgroundOnly">
575 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800576 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700577 <data android:mimeType="text/directory" />
Daisuke Miyakawa92ba98a2010-06-22 09:12:19 +0900578 <data android:mimeType="text/vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800579 <data android:mimeType="text/x-vcard" />
580 <category android:name="android.intent.category.DEFAULT" />
581 </intent-filter>
582 </activity>
583
Daisuke Miyakawaab596602010-11-18 17:28:02 -0800584 <activity android:name=".vcard.CancelActivity"
Daisuke Miyakawa18b51902010-08-19 14:13:38 -0700585 android:theme="@style/BackgroundOnly" />
586
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700587 <activity android:name=".vcard.SelectAccountActivity"
Daisuke Miyakawa6d2f27f2010-04-21 16:11:38 +0900588 android:theme="@style/BackgroundOnly" />
589
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700590 <activity android:name=".vcard.ExportVCardActivity"
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700591 android:theme="@style/BackgroundOnly" />
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700592
Daisuke Miyakawad8fb81a2010-06-08 17:44:22 -0700593 <service
594 android:name=".vcard.VCardService"
595 android:exported="false" />
596
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700597 <!-- Pinned header list demo -->
598 <activity android:name=".widget.PinnedHeaderListDemoActivity">
599 <intent-filter>
600 <action android:name="android.intent.action.MAIN" />
601 <category android:name="android.intent.category.DEFAULT" />
602 </intent-filter>
603 </activity>
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700604
605 <!-- The widget that shows details and the social stream of a contact -->
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700606 <receiver android:name=".socialwidget.SocialWidgetProvider"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700607 android:label="@string/social_widget_label" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700608 <intent-filter>
609 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
610 </intent-filter>
611 <meta-data android:name="android.appwidget.provider"
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700612 android:resource="@xml/social_widget_info" />
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700613 </receiver>
614
615 <activity
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700616 android:name=".socialwidget.SocialWidgetConfigureActivity"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700617 android:theme="@android:style/Theme.Translucent.NoTitleBar" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700618 <intent-filter>
619 <action android:name="android.intent.action.APPWIDGET_PICK" />
620 </intent-filter>
621 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800622 </application>
623</manifest>