blob: d2cc4925016a71f67dd5c55ef4e3a631f92e7179 [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" />
Hugo Hudsonb002f512011-07-15 17:41:12 +010033 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080034 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
35 <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" />
Daisuke Miyakawa2991dd92009-05-19 08:32:17 +090036 <uses-permission android:name="android.permission.WAKE_LOCK" />
Daisuke Miyakawa72c50522009-07-07 15:37:59 -070037 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Dmitri Plotnikovdaa2d5c2010-01-29 17:44:20 -080038 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Fred Quintana104b7922009-07-22 20:01:15 -070039 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
Nicolas Catania9bcf4702009-11-06 13:19:43 -080040 <uses-permission android:name="android.permission.VIBRATE" />
Dmitri Plotnikov99811722010-11-01 18:21:22 -070041 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Flavio Lerda40d92c42011-07-01 13:47:42 +010042 <uses-permission android:name="com.android.voicemail.permission.READ_WRITE_OWN_VOICEMAIL" />
43 <uses-permission android:name="com.android.voicemail.permission.READ_WRITE_ALL_VOICEMAIL" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080044
45 <application
Dmitri Plotnikovf049ff02010-11-29 10:15:24 -080046 android:name="com.android.contacts.ContactsApplication"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080047 android:label="@string/contactsList"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -080048 android:icon="@mipmap/ic_launcher_contacts"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080049 android:process="android.process.acore"
50 android:taskAffinity="android.task.contacts"
Daniel Lehmann57b5aa12010-09-23 17:42:23 -070051 android:hardwareAccelerated="true"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080052 >
53
Daniel Lehmannf1054f12011-05-05 21:06:42 -070054 <!-- A virtual 12 key dialer -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -070055 <activity android:name=".activities.DialpadActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080056 android:launchMode="singleTop"
57 >
58 <intent-filter>
59 <action android:name="com.android.phone.action.TOUCH_DIALER" />
60 <category android:name="android.intent.category.DEFAULT" />
61 <category android:name="android.intent.category.TAB" />
62 </intent-filter>
63 </activity>
64
Daniel Lehmannf1054f12011-05-05 21:06:42 -070065 <!-- A list of recent calls -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -070066 <activity android:name=".activities.CallLogActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080067 android:label="@string/recentCallsIconLabel"
Flavio Lerdae00060f2011-07-04 18:59:55 +010068 android:theme="@style/DialtactsTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080069 >
70 <intent-filter>
71 <action android:name="com.android.phone.action.RECENT_CALLS" />
72 <category android:name="android.intent.category.DEFAULT" />
73 <category android:name="android.intent.category.TAB" />
74 </intent-filter>
75 </activity>
76
Daniel Lehmanne9b196e2010-10-26 12:17:39 -070077 <!-- Intercept Dialer Intents for devices without a phone.
78 This activity should have the same intent filters as the DialtactsActivity,
79 so that its capturing the same events. Omit android.intent.category.LAUNCHER, because we
80 don't want this to show up in the Launcher. The priorities of the intent-filters
81 are set lower, so that the user does not see a disambig dialog -->
82 <activity
83 android:name=".activities.NonPhoneActivity"
84 android:theme="@style/NonPhoneActivityTheme"
85 >
86 <intent-filter android:priority="-1">
87 <action android:name="android.intent.action.DIAL" />
88 <category android:name="android.intent.category.DEFAULT" />
89 <category android:name="android.intent.category.BROWSABLE" />
90 <data android:mimeType="vnd.android.cursor.item/phone" />
91 <data android:mimeType="vnd.android.cursor.item/person" />
92 </intent-filter>
93 <intent-filter android:priority="-1">
94 <action android:name="android.intent.action.DIAL" />
95 <category android:name="android.intent.category.DEFAULT" />
96 <category android:name="android.intent.category.BROWSABLE" />
97 <data android:scheme="voicemail" />
98 </intent-filter>
99 <intent-filter android:priority="-1">
100 <action android:name="android.intent.action.DIAL" />
101 <category android:name="android.intent.category.DEFAULT" />
102 </intent-filter>
103 <intent-filter android:priority="-1">
104 <action android:name="android.intent.action.MAIN" />
105 <category android:name="android.intent.category.DEFAULT" />
106 <category android:name="android.intent.category.BROWSABLE" />
107 </intent-filter>
108 <intent-filter android:priority="-1">
109 <action android:name="android.intent.action.VIEW" />
110 <action android:name="android.intent.action.DIAL" />
111 <category android:name="android.intent.category.DEFAULT" />
112 <category android:name="android.intent.category.BROWSABLE" />
113 <data android:scheme="tel" />
114 </intent-filter>
115 <intent-filter android:priority="-1">
116 <action android:name="android.intent.action.VIEW" />
117 <category android:name="android.intent.category.DEFAULT" />
118 <category android:name="android.intent.category.BROWSABLE" />
119 <data android:mimeType="vnd.android.cursor.dir/calls" />
120 </intent-filter>
121 <intent-filter android:priority="-1">
122 <action android:name="android.intent.action.CALL_BUTTON" />
123 <category android:name="android.intent.category.DEFAULT" />
124 <category android:name="android.intent.category.BROWSABLE" />
125 </intent-filter>
126 </activity>
127
Daniel Lehmann7675e122010-04-21 17:31:11 -0700128 <!-- Tab container for all tabs -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -0700129 <activity android:name=".activities.DialtactsActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800130 android:label="@string/launcherDialer"
Nicolas Catania177d88f2009-09-27 15:15:05 -0700131 android:theme="@style/DialtactsTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800132 android:launchMode="singleTask"
133 android:clearTaskOnLaunch="true"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800134 android:icon="@mipmap/ic_launcher_phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800135 android:screenOrientation="nosensor"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700136 android:enabled="@*android:bool/config_voice_capable"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700137 android:taskAffinity="android.task.contacts.phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800138 >
139 <intent-filter>
140 <action android:name="android.intent.action.DIAL" />
141 <category android:name="android.intent.category.DEFAULT" />
142 <category android:name="android.intent.category.BROWSABLE" />
143 <data android:mimeType="vnd.android.cursor.item/phone" />
144 <data android:mimeType="vnd.android.cursor.item/person" />
145 </intent-filter>
146 <intent-filter>
147 <action android:name="android.intent.action.DIAL" />
148 <category android:name="android.intent.category.DEFAULT" />
149 <category android:name="android.intent.category.BROWSABLE" />
150 <data android:scheme="voicemail" />
151 </intent-filter>
152 <intent-filter>
153 <action android:name="android.intent.action.DIAL" />
154 <category android:name="android.intent.category.DEFAULT" />
155 </intent-filter>
156 <intent-filter>
157 <action android:name="android.intent.action.MAIN" />
158 <category android:name="android.intent.category.DEFAULT" />
159 <category android:name="android.intent.category.LAUNCHER" />
160 <category android:name="android.intent.category.BROWSABLE" />
161 </intent-filter>
162 <intent-filter>
163 <action android:name="android.intent.action.VIEW" />
164 <action android:name="android.intent.action.DIAL" />
165 <category android:name="android.intent.category.DEFAULT" />
166 <category android:name="android.intent.category.BROWSABLE" />
167 <data android:scheme="tel" />
168 </intent-filter>
169 <intent-filter>
170 <action android:name="android.intent.action.VIEW" />
171 <category android:name="android.intent.category.DEFAULT" />
172 <category android:name="android.intent.category.BROWSABLE" />
173 <data android:mimeType="vnd.android.cursor.dir/calls" />
174 </intent-filter>
175 <intent-filter>
176 <action android:name="android.intent.action.CALL_BUTTON" />
177 <category android:name="android.intent.category.DEFAULT" />
178 <category android:name="android.intent.category.BROWSABLE" />
179 </intent-filter>
180 </activity>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700181
Katherine Kuan9856fce2011-06-01 10:24:09 -0700182 <!-- The main Contacts activity with the contact list, favorites, and groups. -->
183 <activity android:name=".activities.PeopleActivity"
184 android:label="@string/people"
185 android:theme="@style/PeopleTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800186 android:clearTaskOnLaunch="true"
187 android:launchMode="singleTop"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800188 >
189 <intent-filter>
190 <action android:name="android.intent.action.MAIN" />
191 <category android:name="android.intent.category.DEFAULT" />
192 <category android:name="android.intent.category.LAUNCHER" />
Dmitri Plotnikov032bb362009-05-06 17:05:39 -0700193 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800194 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800195 <intent-filter>
196 <action android:name="com.android.contacts.action.LIST_DEFAULT" />
197 <category android:name="android.intent.category.DEFAULT" />
198 <category android:name="android.intent.category.TAB" />
199 </intent-filter>
200
201 <intent-filter>
202 <action android:name="com.android.contacts.action.LIST_CONTACTS" />
203 <category android:name="android.intent.category.DEFAULT" />
204 <category android:name="android.intent.category.TAB" />
205 </intent-filter>
206
207 <intent-filter>
208 <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" />
209 <category android:name="android.intent.category.DEFAULT" />
210 <category android:name="android.intent.category.TAB" />
211 </intent-filter>
212
213 <intent-filter>
214 <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" />
215 <category android:name="android.intent.category.DEFAULT" />
216 <category android:name="android.intent.category.TAB" />
217 </intent-filter>
218
219 <intent-filter android:label="@string/starredList">
220 <action android:name="com.android.contacts.action.LIST_STARRED" />
221 <category android:name="android.intent.category.DEFAULT" />
222 <category android:name="android.intent.category.TAB" />
223 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700224
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800225 <intent-filter android:label="@string/frequentList">
226 <action android:name="com.android.contacts.action.LIST_FREQUENT" />
227 <category android:name="android.intent.category.DEFAULT" />
228 <category android:name="android.intent.category.TAB" />
229 </intent-filter>
230
231 <intent-filter android:label="@string/strequentList">
232 <action android:name="com.android.contacts.action.LIST_STREQUENT" />
233 <category android:name="android.intent.category.DEFAULT" />
234 <category android:name="android.intent.category.TAB" />
235 </intent-filter>
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700236
237 <intent-filter>
238 <action android:name="android.intent.action.SEARCH" />
239 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov0edd4072011-01-19 10:10:10 -0800240 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700241 </intent-filter>
242
243 <intent-filter>
Dmitri Plotnikov30b99712011-01-20 09:29:44 -0800244 <action android:name="android.intent.action.SEARCH" />
245 <category android:name="android.intent.category.DEFAULT" />
246 </intent-filter>
247
248 <intent-filter>
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700249 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
250 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800251 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700252 </intent-filter>
253
254 <meta-data android:name="android.app.searchable"
255 android:resource="@xml/searchable"
256 />
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700257 </activity>
258
259 <activity android:name=".activities.ContactSelectionActivity"
260 android:label="@string/contactsList"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700261 android:theme="@style/ContactPickerTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800262 android:launchMode="singleTop"
263 android:clearTaskOnLaunch="true"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700264 >
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800265 <intent-filter>
266 <action android:name="android.intent.action.INSERT_OR_EDIT" />
267 <category android:name="android.intent.category.DEFAULT" />
268 <data android:mimeType="vnd.android.cursor.item/person" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700269 <data android:mimeType="vnd.android.cursor.item/contact" />
270 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800271 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700272
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800273 <intent-filter>
274 <action android:name="android.intent.action.PICK" />
275 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800276 <data android:mimeType="vnd.android.cursor.dir/contact" />
277 <data android:mimeType="vnd.android.cursor.dir/person" />
278 <data android:mimeType="vnd.android.cursor.dir/phone_v2" />
279 <data android:mimeType="vnd.android.cursor.dir/phone" />
280 <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" />
281 <data android:mimeType="vnd.android.cursor.dir/postal-address" />
Daniel Lehmannc86ace72011-03-23 21:04:29 -0700282 <data android:mimeType="vnd.android.cursor.dir/email_v2" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800283 </intent-filter>
284
285 <intent-filter>
286 <action android:name="android.intent.action.GET_CONTENT" />
287 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800288 <data android:mimeType="vnd.android.cursor.item/contact" />
289 <data android:mimeType="vnd.android.cursor.item/person" />
290 <data android:mimeType="vnd.android.cursor.item/phone_v2" />
291 <data android:mimeType="vnd.android.cursor.item/phone" />
292 <data android:mimeType="vnd.android.cursor.item/postal-address_v2" />
293 <data android:mimeType="vnd.android.cursor.item/postal-address" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800294 </intent-filter>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700295 </activity>
296
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700297 <!-- Backwards compatibility: somebody may have hard coded this activity name -->
298 <activity-alias android:name="ContactsListActivity"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700299 android:targetActivity=".activities.PeopleActivity"
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700300 />
301
Daniel Lehmanne9b94612011-07-11 11:44:56 -0700302 <!-- Backwards compatibility: "Contacts" from Honeycomb -->
303 <activity-alias android:name=".activities.ContactsFrontDoor"
304 android:targetActivity=".activities.PeopleActivity"
305 android:exported="true"
306 />
307
308 <!-- Backwards compatibility: "Contacts" from Gingerbread and earlier -->
309 <activity-alias android:name="DialtactsContactsEntryActivity"
310 android:targetActivity=".activities.PeopleActivity"
311 android:exported="true"
312 />
313
314 <!-- Backwards compatibility: "Phone" from Gingerbread and earlier -->
315 <activity-alias android:name="DialtactsActivity"
316 android:targetActivity=".activities.DialtactsActivity"
317 android:exported="true"
318 />
319
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700320 <!-- An activity for joining contacts -->
Dmitri Plotnikovd21ddb22010-11-03 14:25:59 -0700321 <activity android:name=".activities.JoinContactActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700322 android:theme="@style/JoinContactActivityTheme"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700323 android:clearTaskOnLaunch="true"
324 >
325 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700326 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700327 <category android:name="android.intent.category.DEFAULT" />
328 </intent-filter>
329 </activity>
330
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700331 <!-- Used to set options -->
Daniel Lehmann10105742010-07-15 17:35:57 -0700332 <activity
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700333 android:name=".preference.ContactsPreferenceActivity"
334 android:label="@string/activity_title_settings"
Daniel Lehmann10105742010-07-15 17:35:57 -0700335 android:theme="@style/ContactsPreferencesTheme" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700336
Katherine Kuan495db432011-07-06 18:58:46 -0700337 <!-- Used to filter contacts list by account -->
338 <activity
339 android:name=".list.AccountFilterActivity"
340 android:label="@string/activity_title_contacts_filter"
341 android:theme="@style/ContactListFilterTheme" />
342
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700343 <!-- Used to select display and sync groups -->
344 <activity
345 android:name=".list.CustomContactListFilterActivity"
346 android:label="@string/custom_list_filter"
Katherine Kuan495db432011-07-06 18:58:46 -0700347 android:theme="@style/ContactListFilterTheme" />
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700348
Jeff Sharkey802b2052009-08-04 14:21:06 -0700349 <activity
Daniel Lehmann72af89f2010-10-18 15:15:59 -0700350 android:name=".activities.ShowOrCreateActivity"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700351 android:theme="@android:style/Theme.Translucent.NoTitleBar">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700352
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700353 <intent-filter>
354 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700355 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700356 <data android:scheme="mailto" />
357 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700358 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700359 </activity>
360
Katherine Kuan9add0e52011-05-10 18:26:15 -0700361
362 <!-- List of groups -->
363 <activity android:name=".activities.GroupBrowserActivity"
364 android:label="@string/contactsGroupsLabel"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700365 android:theme="@style/PeopleTheme"
Katherine Kuan9add0e52011-05-10 18:26:15 -0700366 android:launchMode="singleTop"
367 android:clearTaskOnLaunch="true">
368 <!-- TODO: Remove this temporary intent action name when the fragmentization
369 work is done. -->
370 <intent-filter>
371 <action android:name="com.android.phone.action.GROUPS_LIST" />
372 <category android:name="android.intent.category.DEFAULT" />
373 <category android:name="android.intent.category.TAB" />
374 </intent-filter>
375 </activity>
376
Katherine Kuanfd8cded2011-05-11 11:34:56 -0700377 <!-- Views the details of a single group -->
378 <activity android:name=".activities.GroupDetailActivity"
379 android:label=""
380 android:theme="@style/GroupDetailTheme" />
381
Katherine Kuanc6b8afe2011-06-22 19:03:50 -0700382 <!-- Create a new or edit an existing group -->
383 <activity
384 android:name=".activities.GroupEditorActivity"
385 android:theme="@style/ContactEditorActivityTheme"
386 android:windowSoftInputMode="adjustResize" />
387
Evan Millar0d0ab342009-09-30 19:03:35 -0700388 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700389 temporary hack until we add better framework support. -->
390 <activity
Jeff Sharkeycde73892011-04-07 00:48:02 -0700391 android:name=".quickcontact.QuickContactWindow"
392 android:theme="@style/Theme.QuickContact"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700393 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700394 android:excludeFromRecents="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700395 android:taskAffinity="android.task.quickcontact"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700396 android:windowSoftInputMode="stateUnchanged">
Jeff Sharkey3f177592009-05-18 15:23:12 -0700397
398 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700399 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700400 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800401 <data android:mimeType="vnd.android.cursor.item/contact" />
402 <data android:mimeType="vnd.android.cursor.item/person" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700403 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800404 </activity>
405
Daniel Lehmannaf8e3862010-11-19 15:38:44 -0800406 <!-- Flushes the QuickContact IntentCache -->
407 <receiver android:name=".quickcontact.PackageIntentReceiver">
408 <intent-filter>
409 <action android:name="android.intent.action.PACKAGE_ADDED" />
410 <data android:scheme="package" />
411 </intent-filter>
412 <intent-filter>
413 <action android:name="android.intent.action.PACKAGE_REPLACED" />
414 <data android:scheme="package" />
415 </intent-filter>
416 <intent-filter>
417 <action android:name="android.intent.action.PACKAGE_REMOVED" />
418 <data android:scheme="package" />
419 </intent-filter>
420 <intent-filter>
421 <action android:name="android.intent.action.PACKAGE_CHANGED" />
422 <data android:scheme="package" />
423 </intent-filter>
424 </receiver>
425
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800426 <activity-alias android:name="ContactShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700427 android:targetActivity=".activities.ContactSelectionActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700428 android:label="@string/shortcutContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800429 android:icon="@mipmap/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800430
431 <intent-filter>
432 <action android:name="android.intent.action.CREATE_SHORTCUT" />
433 <category android:name="android.intent.category.DEFAULT" />
434 </intent-filter>
435
436 </activity-alias>
437
Dianne Hackborn333a6152009-05-26 12:46:23 -0700438 <activity-alias android:name="alias.DialShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700439 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700440 android:label="@string/shortcutDialContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800441 android:icon="@mipmap/ic_launcher_shortcut_directdial"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700442 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700443
444 <intent-filter>
445 <action android:name="android.intent.action.CREATE_SHORTCUT" />
446 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200447 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700448 </intent-filter>
449
450 </activity-alias>
451
452 <activity-alias android:name="alias.MessageShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700453 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700454 android:label="@string/shortcutMessageContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800455 android:icon="@mipmap/ic_launcher_shortcut_directmessage"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700456 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700457
458 <intent-filter>
459 <action android:name="android.intent.action.CREATE_SHORTCUT" />
460 <category android:name="android.intent.category.DEFAULT" />
461 </intent-filter>
462
463 </activity-alias>
464
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800465 <activity android:name="CallDetailActivity"
466 android:label="@string/callDetailTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700467 android:theme="@style/CallDetailActivityTheme"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700468 android:taskAffinity="android.task.contacts.phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800469 >
470 <intent-filter>
471 <action android:name="android.intent.action.VIEW" />
472 <category android:name="android.intent.category.DEFAULT" />
473 <data android:mimeType="vnd.android.cursor.item/calls" />
474 </intent-filter>
475 </activity>
476
477 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700478 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800479 android:label="@string/viewContactTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700480 android:theme="@style/ContactDetailActivityTheme">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700481
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800482 <intent-filter android:label="@string/viewContactDesription">
483 <action android:name="android.intent.action.VIEW" />
484 <category android:name="android.intent.category.DEFAULT" />
Daniel Lehmannc90c7052011-03-16 18:42:34 -0700485 <data android:mimeType="vnd.android.cursor.dir/person" />
486 <data android:mimeType="vnd.android.cursor.dir/contact" />
487 <data android:mimeType="vnd.android.cursor.item/person" />
488 <data android:mimeType="vnd.android.cursor.item/contact" />
489 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800490 </intent-filter>
491 </activity>
492
Daniel Lehmannf319cf82010-06-25 17:41:13 -0700493 <!-- Create a new or edit an existing contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700494 <activity
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700495 android:name=".activities.ContactEditorActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700496 android:theme="@style/ContactEditorActivityTheme"
Daniel Lehmann3a120772010-06-21 16:21:35 -0700497 android:windowSoftInputMode="adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700498
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800499 <intent-filter android:label="@string/editContactDescription">
500 <action android:name="android.intent.action.EDIT" />
501 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800502 <data android:mimeType="vnd.android.cursor.item/person" />
503 <data android:mimeType="vnd.android.cursor.item/contact" />
504 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800505 </intent-filter>
506 <intent-filter android:label="@string/insertContactDescription">
507 <action android:name="android.intent.action.INSERT" />
508 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700509 <data android:mimeType="vnd.android.cursor.dir/person" />
510 <data android:mimeType="vnd.android.cursor.dir/contact" />
511 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800512 </intent-filter>
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700513 </activity>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700514
Dmitri Plotnikov43fd1e82011-01-09 11:29:39 -0800515 <activity android:name=".test.FragmentTestActivity">
516 <intent-filter>
517 <category android:name="android.intent.category.TEST" />
518 </intent-filter>
519 </activity>
520
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700521 <!-- Stub service used to keep our process alive long enough for
522 background threads to finish their operations. -->
523 <service
524 android:name=".util.EmptyService"
525 android:exported="false" />
526
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700527 <!-- Service to save a contact -->
528 <service
Dmitri Plotnikov72f2b7a2010-12-03 18:46:31 -0800529 android:name=".ContactSaveService"
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700530 android:exported="false" />
531
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700532 <!-- Views the details of a single contact -->
533 <activity android:name="ContactOptionsActivity"
534 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700535 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700536 <intent-filter>
537 <action android:name="android.intent.action.EDIT" />
538 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800539 </intent-filter>
540 </activity>
541
542 <!-- Attaches a photo to a contact. Started from external applications -->
Dmitri Plotnikov19d51ac2011-01-04 14:30:24 -0800543 <activity android:name=".activities.AttachPhotoActivity"
Daniel Lehmann9442ef42010-11-09 17:35:53 -0800544 android:label="@string/attach_photo_dialog_title"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800545 android:taskAffinity="">
546 <intent-filter>
547 <action android:name="android.intent.action.ATTACH_DATA" />
548 <data android:mimeType="image/*" />
549 <category android:name="android.intent.category.DEFAULT" />
550 </intent-filter>
551 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700552 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800553
Dmitri Plotnikov884e3932010-05-13 19:13:51 -0700554 <!-- Interstitial activity that shows a phone disambig dialog -->
555 <activity android:name="CallContactActivity"
556 android:theme="@android:style/Theme.Translucent">
557 </activity>
558
Katherine Kuan9856fce2011-06-01 10:24:09 -0700559 <!-- Makes .PeopleActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800560 <meta-data
561 android:name="android.app.default_searchable"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700562 android:value=".activities.PeopleActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800563
564
565 <!-- LIVE FOLDERS -->
566 <activity
567 android:name=".ContactsLiveFolders$AllContacts"
568 android:label="@string/liveFolderAll"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800569 android:icon="@mipmap/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800570 <intent-filter>
571 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
572 <category android:name="android.intent.category.DEFAULT" />
573 </intent-filter>
574 </activity>
575
576 <activity
577 android:name=".ContactsLiveFolders$StarredContacts"
578 android:label="@string/liveFolderFavorites"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800579 android:icon="@mipmap/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800580 <intent-filter>
581 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
582 <category android:name="android.intent.category.DEFAULT" />
583 </intent-filter>
584 </activity>
585
586 <activity
587 android:name=".ContactsLiveFolders$PhoneContacts"
588 android:label="@string/liveFolderPhone"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800589 android:icon="@mipmap/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800590 <intent-filter>
591 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
592 <category android:name="android.intent.category.DEFAULT" />
593 </intent-filter>
594 </activity>
595
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700596 <!-- vCard related -->
597 <activity android:name=".vcard.ImportVCardActivity"
Daisuke Miyakawa4baff1e2011-04-07 14:28:37 -0700598 android:configChanges="orientation|screenSize|keyboardHidden"
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900599 android:theme="@style/BackgroundOnly">
600 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800601 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700602 <data android:mimeType="text/directory" />
Daisuke Miyakawa92ba98a2010-06-22 09:12:19 +0900603 <data android:mimeType="text/vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800604 <data android:mimeType="text/x-vcard" />
605 <category android:name="android.intent.category.DEFAULT" />
606 </intent-filter>
607 </activity>
608
Daisuke Miyakawaab596602010-11-18 17:28:02 -0800609 <activity android:name=".vcard.CancelActivity"
Daisuke Miyakawa18b51902010-08-19 14:13:38 -0700610 android:theme="@style/BackgroundOnly" />
611
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700612 <activity android:name=".vcard.SelectAccountActivity"
Daisuke Miyakawa6d2f27f2010-04-21 16:11:38 +0900613 android:theme="@style/BackgroundOnly" />
614
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700615 <activity android:name=".vcard.ExportVCardActivity"
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700616 android:theme="@style/BackgroundOnly" />
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700617
Daisuke Miyakawad8fb81a2010-06-08 17:44:22 -0700618 <service
619 android:name=".vcard.VCardService"
620 android:exported="false" />
621
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700622 <!-- Pinned header list demo -->
623 <activity android:name=".widget.PinnedHeaderListDemoActivity">
624 <intent-filter>
625 <action android:name="android.intent.action.MAIN" />
626 <category android:name="android.intent.category.DEFAULT" />
627 </intent-filter>
628 </activity>
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700629
630 <!-- The widget that shows details and the social stream of a contact -->
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700631 <receiver android:name=".socialwidget.SocialWidgetProvider"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700632 android:label="@string/social_widget_label" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700633 <intent-filter>
634 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
635 </intent-filter>
636 <meta-data android:name="android.appwidget.provider"
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700637 android:resource="@xml/social_widget_info" />
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700638 </receiver>
639
Flavio Lerda87bd5362011-06-30 12:20:43 +0100640 <receiver android:name=".calllog.NewVoicemailReceiver">
641 <intent-filter>
642 <action android:name="android.intent.action.NEW_VOICEMAIL" />
643 <data
644 android:scheme="content"
645 android:host="com.android.voicemail"
646 />
647 </intent-filter>
648 </receiver>
649
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700650 <activity
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700651 android:name=".socialwidget.SocialWidgetConfigureActivity"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700652 android:theme="@android:style/Theme.Translucent.NoTitleBar" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700653 <intent-filter>
654 <action android:name="android.intent.action.APPWIDGET_PICK" />
655 </intent-filter>
656 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800657 </application>
658</manifest>