blob: 16c75c50124d0a07b2438c294249da0ef23ddd04 [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" />
Doug Zongker854d3262011-07-19 13:11:58 -070044 <!-- allow broadcasting secret code intents that reboot the phone -->
45 <uses-permission android:name="android.permission.REBOOT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080046
47 <application
Dmitri Plotnikovf049ff02010-11-29 10:15:24 -080048 android:name="com.android.contacts.ContactsApplication"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080049 android:label="@string/contactsList"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -080050 android:icon="@mipmap/ic_launcher_contacts"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080051 android:process="android.process.acore"
52 android:taskAffinity="android.task.contacts"
Daniel Lehmann57b5aa12010-09-23 17:42:23 -070053 android:hardwareAccelerated="true"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080054 >
55
Daniel Lehmannf1054f12011-05-05 21:06:42 -070056 <!-- A virtual 12 key dialer -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -070057 <activity android:name=".activities.DialpadActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080058 android:launchMode="singleTop"
59 >
60 <intent-filter>
61 <action android:name="com.android.phone.action.TOUCH_DIALER" />
62 <category android:name="android.intent.category.DEFAULT" />
63 <category android:name="android.intent.category.TAB" />
64 </intent-filter>
65 </activity>
66
Daniel Lehmannf1054f12011-05-05 21:06:42 -070067 <!-- A list of recent calls -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -070068 <activity android:name=".activities.CallLogActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080069 android:label="@string/recentCallsIconLabel"
Flavio Lerdae00060f2011-07-04 18:59:55 +010070 android:theme="@style/DialtactsTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080071 >
72 <intent-filter>
73 <action android:name="com.android.phone.action.RECENT_CALLS" />
74 <category android:name="android.intent.category.DEFAULT" />
75 <category android:name="android.intent.category.TAB" />
76 </intent-filter>
77 </activity>
78
Daniel Lehmanne9b196e2010-10-26 12:17:39 -070079 <!-- Intercept Dialer Intents for devices without a phone.
80 This activity should have the same intent filters as the DialtactsActivity,
81 so that its capturing the same events. Omit android.intent.category.LAUNCHER, because we
82 don't want this to show up in the Launcher. The priorities of the intent-filters
83 are set lower, so that the user does not see a disambig dialog -->
84 <activity
85 android:name=".activities.NonPhoneActivity"
86 android:theme="@style/NonPhoneActivityTheme"
87 >
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:mimeType="vnd.android.cursor.item/phone" />
93 <data android:mimeType="vnd.android.cursor.item/person" />
94 </intent-filter>
95 <intent-filter android:priority="-1">
96 <action android:name="android.intent.action.DIAL" />
97 <category android:name="android.intent.category.DEFAULT" />
98 <category android:name="android.intent.category.BROWSABLE" />
99 <data android:scheme="voicemail" />
100 </intent-filter>
101 <intent-filter android:priority="-1">
102 <action android:name="android.intent.action.DIAL" />
103 <category android:name="android.intent.category.DEFAULT" />
104 </intent-filter>
105 <intent-filter android:priority="-1">
106 <action android:name="android.intent.action.MAIN" />
107 <category android:name="android.intent.category.DEFAULT" />
108 <category android:name="android.intent.category.BROWSABLE" />
109 </intent-filter>
110 <intent-filter android:priority="-1">
111 <action android:name="android.intent.action.VIEW" />
112 <action android:name="android.intent.action.DIAL" />
113 <category android:name="android.intent.category.DEFAULT" />
114 <category android:name="android.intent.category.BROWSABLE" />
115 <data android:scheme="tel" />
116 </intent-filter>
117 <intent-filter android:priority="-1">
118 <action android:name="android.intent.action.VIEW" />
119 <category android:name="android.intent.category.DEFAULT" />
120 <category android:name="android.intent.category.BROWSABLE" />
121 <data android:mimeType="vnd.android.cursor.dir/calls" />
122 </intent-filter>
123 <intent-filter android:priority="-1">
124 <action android:name="android.intent.action.CALL_BUTTON" />
125 <category android:name="android.intent.category.DEFAULT" />
126 <category android:name="android.intent.category.BROWSABLE" />
127 </intent-filter>
128 </activity>
129
Daniel Lehmann7675e122010-04-21 17:31:11 -0700130 <!-- Tab container for all tabs -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -0700131 <activity android:name=".activities.DialtactsActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800132 android:label="@string/launcherDialer"
Nicolas Catania177d88f2009-09-27 15:15:05 -0700133 android:theme="@style/DialtactsTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800134 android:launchMode="singleTask"
135 android:clearTaskOnLaunch="true"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800136 android:icon="@mipmap/ic_launcher_phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800137 android:screenOrientation="nosensor"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700138 android:enabled="@*android:bool/config_voice_capable"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700139 android:taskAffinity="android.task.contacts.phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800140 >
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:mimeType="vnd.android.cursor.item/phone" />
146 <data android:mimeType="vnd.android.cursor.item/person" />
147 </intent-filter>
148 <intent-filter>
149 <action android:name="android.intent.action.DIAL" />
150 <category android:name="android.intent.category.DEFAULT" />
151 <category android:name="android.intent.category.BROWSABLE" />
152 <data android:scheme="voicemail" />
153 </intent-filter>
154 <intent-filter>
155 <action android:name="android.intent.action.DIAL" />
156 <category android:name="android.intent.category.DEFAULT" />
157 </intent-filter>
158 <intent-filter>
159 <action android:name="android.intent.action.MAIN" />
160 <category android:name="android.intent.category.DEFAULT" />
161 <category android:name="android.intent.category.LAUNCHER" />
162 <category android:name="android.intent.category.BROWSABLE" />
163 </intent-filter>
164 <intent-filter>
165 <action android:name="android.intent.action.VIEW" />
166 <action android:name="android.intent.action.DIAL" />
167 <category android:name="android.intent.category.DEFAULT" />
168 <category android:name="android.intent.category.BROWSABLE" />
169 <data android:scheme="tel" />
170 </intent-filter>
171 <intent-filter>
172 <action android:name="android.intent.action.VIEW" />
173 <category android:name="android.intent.category.DEFAULT" />
174 <category android:name="android.intent.category.BROWSABLE" />
175 <data android:mimeType="vnd.android.cursor.dir/calls" />
176 </intent-filter>
177 <intent-filter>
178 <action android:name="android.intent.action.CALL_BUTTON" />
179 <category android:name="android.intent.category.DEFAULT" />
180 <category android:name="android.intent.category.BROWSABLE" />
181 </intent-filter>
182 </activity>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700183
Katherine Kuan9856fce2011-06-01 10:24:09 -0700184 <!-- The main Contacts activity with the contact list, favorites, and groups. -->
185 <activity android:name=".activities.PeopleActivity"
186 android:label="@string/people"
187 android:theme="@style/PeopleTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800188 android:clearTaskOnLaunch="true"
189 android:launchMode="singleTop"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800190 >
191 <intent-filter>
192 <action android:name="android.intent.action.MAIN" />
193 <category android:name="android.intent.category.DEFAULT" />
194 <category android:name="android.intent.category.LAUNCHER" />
Dmitri Plotnikov032bb362009-05-06 17:05:39 -0700195 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800196 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800197 <intent-filter>
198 <action android:name="com.android.contacts.action.LIST_DEFAULT" />
199 <category android:name="android.intent.category.DEFAULT" />
200 <category android:name="android.intent.category.TAB" />
201 </intent-filter>
202
203 <intent-filter>
204 <action android:name="com.android.contacts.action.LIST_CONTACTS" />
205 <category android:name="android.intent.category.DEFAULT" />
206 <category android:name="android.intent.category.TAB" />
207 </intent-filter>
208
209 <intent-filter>
210 <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" />
211 <category android:name="android.intent.category.DEFAULT" />
212 <category android:name="android.intent.category.TAB" />
213 </intent-filter>
214
215 <intent-filter>
216 <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" />
217 <category android:name="android.intent.category.DEFAULT" />
218 <category android:name="android.intent.category.TAB" />
219 </intent-filter>
220
221 <intent-filter android:label="@string/starredList">
222 <action android:name="com.android.contacts.action.LIST_STARRED" />
223 <category android:name="android.intent.category.DEFAULT" />
224 <category android:name="android.intent.category.TAB" />
225 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700226
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800227 <intent-filter android:label="@string/frequentList">
228 <action android:name="com.android.contacts.action.LIST_FREQUENT" />
229 <category android:name="android.intent.category.DEFAULT" />
230 <category android:name="android.intent.category.TAB" />
231 </intent-filter>
232
233 <intent-filter android:label="@string/strequentList">
234 <action android:name="com.android.contacts.action.LIST_STREQUENT" />
235 <category android:name="android.intent.category.DEFAULT" />
236 <category android:name="android.intent.category.TAB" />
237 </intent-filter>
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700238
239 <intent-filter>
240 <action android:name="android.intent.action.SEARCH" />
241 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov0edd4072011-01-19 10:10:10 -0800242 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700243 </intent-filter>
244
245 <intent-filter>
Dmitri Plotnikov30b99712011-01-20 09:29:44 -0800246 <action android:name="android.intent.action.SEARCH" />
247 <category android:name="android.intent.category.DEFAULT" />
248 </intent-filter>
249
250 <intent-filter>
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700251 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
252 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800253 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700254 </intent-filter>
255
256 <meta-data android:name="android.app.searchable"
257 android:resource="@xml/searchable"
258 />
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700259 </activity>
Doug Zongker854d3262011-07-19 13:11:58 -0700260
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700261 <activity android:name=".activities.ContactSelectionActivity"
262 android:label="@string/contactsList"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700263 android:theme="@style/ContactPickerTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800264 android:launchMode="singleTop"
265 android:clearTaskOnLaunch="true"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700266 >
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800267 <intent-filter>
268 <action android:name="android.intent.action.INSERT_OR_EDIT" />
269 <category android:name="android.intent.category.DEFAULT" />
270 <data android:mimeType="vnd.android.cursor.item/person" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700271 <data android:mimeType="vnd.android.cursor.item/contact" />
272 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800273 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700274
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800275 <intent-filter>
276 <action android:name="android.intent.action.PICK" />
277 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800278 <data android:mimeType="vnd.android.cursor.dir/contact" />
279 <data android:mimeType="vnd.android.cursor.dir/person" />
280 <data android:mimeType="vnd.android.cursor.dir/phone_v2" />
281 <data android:mimeType="vnd.android.cursor.dir/phone" />
282 <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" />
283 <data android:mimeType="vnd.android.cursor.dir/postal-address" />
Daniel Lehmannc86ace72011-03-23 21:04:29 -0700284 <data android:mimeType="vnd.android.cursor.dir/email_v2" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800285 </intent-filter>
286
287 <intent-filter>
288 <action android:name="android.intent.action.GET_CONTENT" />
289 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800290 <data android:mimeType="vnd.android.cursor.item/contact" />
291 <data android:mimeType="vnd.android.cursor.item/person" />
292 <data android:mimeType="vnd.android.cursor.item/phone_v2" />
293 <data android:mimeType="vnd.android.cursor.item/phone" />
294 <data android:mimeType="vnd.android.cursor.item/postal-address_v2" />
295 <data android:mimeType="vnd.android.cursor.item/postal-address" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800296 </intent-filter>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700297 </activity>
298
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700299 <!-- Backwards compatibility: somebody may have hard coded this activity name -->
300 <activity-alias android:name="ContactsListActivity"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700301 android:targetActivity=".activities.PeopleActivity"
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700302 />
303
Daniel Lehmanne9b94612011-07-11 11:44:56 -0700304 <!-- Backwards compatibility: "Contacts" from Honeycomb -->
305 <activity-alias android:name=".activities.ContactsFrontDoor"
306 android:targetActivity=".activities.PeopleActivity"
307 android:exported="true"
308 />
309
310 <!-- Backwards compatibility: "Contacts" from Gingerbread and earlier -->
311 <activity-alias android:name="DialtactsContactsEntryActivity"
312 android:targetActivity=".activities.PeopleActivity"
313 android:exported="true"
314 />
315
316 <!-- Backwards compatibility: "Phone" from Gingerbread and earlier -->
317 <activity-alias android:name="DialtactsActivity"
318 android:targetActivity=".activities.DialtactsActivity"
319 android:exported="true"
320 />
321
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700322 <!-- An activity for joining contacts -->
Dmitri Plotnikovd21ddb22010-11-03 14:25:59 -0700323 <activity android:name=".activities.JoinContactActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700324 android:theme="@style/JoinContactActivityTheme"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700325 android:clearTaskOnLaunch="true"
326 >
327 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700328 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700329 <category android:name="android.intent.category.DEFAULT" />
330 </intent-filter>
331 </activity>
332
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700333 <!-- Used to set options -->
Daniel Lehmann10105742010-07-15 17:35:57 -0700334 <activity
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700335 android:name=".preference.ContactsPreferenceActivity"
336 android:label="@string/activity_title_settings"
Daniel Lehmann10105742010-07-15 17:35:57 -0700337 android:theme="@style/ContactsPreferencesTheme" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700338
Katherine Kuan495db432011-07-06 18:58:46 -0700339 <!-- Used to filter contacts list by account -->
340 <activity
341 android:name=".list.AccountFilterActivity"
342 android:label="@string/activity_title_contacts_filter"
343 android:theme="@style/ContactListFilterTheme" />
344
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700345 <!-- Used to select display and sync groups -->
346 <activity
347 android:name=".list.CustomContactListFilterActivity"
348 android:label="@string/custom_list_filter"
Katherine Kuan495db432011-07-06 18:58:46 -0700349 android:theme="@style/ContactListFilterTheme" />
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700350
Jeff Sharkey802b2052009-08-04 14:21:06 -0700351 <activity
Daniel Lehmann72af89f2010-10-18 15:15:59 -0700352 android:name=".activities.ShowOrCreateActivity"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700353 android:theme="@android:style/Theme.Translucent.NoTitleBar">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700354
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700355 <intent-filter>
356 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700357 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700358 <data android:scheme="mailto" />
359 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700360 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700361 </activity>
362
Katherine Kuan9add0e52011-05-10 18:26:15 -0700363
364 <!-- List of groups -->
365 <activity android:name=".activities.GroupBrowserActivity"
366 android:label="@string/contactsGroupsLabel"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700367 android:theme="@style/PeopleTheme"
Katherine Kuan9add0e52011-05-10 18:26:15 -0700368 android:launchMode="singleTop"
369 android:clearTaskOnLaunch="true">
370 <!-- TODO: Remove this temporary intent action name when the fragmentization
371 work is done. -->
372 <intent-filter>
373 <action android:name="com.android.phone.action.GROUPS_LIST" />
374 <category android:name="android.intent.category.DEFAULT" />
375 <category android:name="android.intent.category.TAB" />
376 </intent-filter>
377 </activity>
378
Katherine Kuanfd8cded2011-05-11 11:34:56 -0700379 <!-- Views the details of a single group -->
380 <activity android:name=".activities.GroupDetailActivity"
381 android:label=""
382 android:theme="@style/GroupDetailTheme" />
383
Katherine Kuanc6b8afe2011-06-22 19:03:50 -0700384 <!-- Create a new or edit an existing group -->
385 <activity
386 android:name=".activities.GroupEditorActivity"
387 android:theme="@style/ContactEditorActivityTheme"
388 android:windowSoftInputMode="adjustResize" />
389
Evan Millar0d0ab342009-09-30 19:03:35 -0700390 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700391 temporary hack until we add better framework support. -->
392 <activity
Daniel Lehmannedb576a2011-07-27 16:45:13 -0700393 android:name=".quickcontact.QuickContactActivity"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700394 android:theme="@style/Theme.QuickContact"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700395 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700396 android:excludeFromRecents="true"
Daisuke Miyakawa85b9d6f2011-08-02 16:43:49 -0700397 android:noHistory="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700398 android:taskAffinity="android.task.quickcontact"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700399 android:windowSoftInputMode="stateUnchanged">
Jeff Sharkey3f177592009-05-18 15:23:12 -0700400
401 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700402 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700403 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800404 <data android:mimeType="vnd.android.cursor.item/contact" />
405 <data android:mimeType="vnd.android.cursor.item/person" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700406 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800407 </activity>
408
Daniel Lehmannaf8e3862010-11-19 15:38:44 -0800409 <!-- Flushes the QuickContact IntentCache -->
410 <receiver android:name=".quickcontact.PackageIntentReceiver">
411 <intent-filter>
412 <action android:name="android.intent.action.PACKAGE_ADDED" />
413 <data android:scheme="package" />
414 </intent-filter>
415 <intent-filter>
416 <action android:name="android.intent.action.PACKAGE_REPLACED" />
417 <data android:scheme="package" />
418 </intent-filter>
419 <intent-filter>
420 <action android:name="android.intent.action.PACKAGE_REMOVED" />
421 <data android:scheme="package" />
422 </intent-filter>
423 <intent-filter>
424 <action android:name="android.intent.action.PACKAGE_CHANGED" />
425 <data android:scheme="package" />
426 </intent-filter>
427 </receiver>
428
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800429 <activity-alias android:name="ContactShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700430 android:targetActivity=".activities.ContactSelectionActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700431 android:label="@string/shortcutContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800432 android:icon="@mipmap/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800433
434 <intent-filter>
435 <action android:name="android.intent.action.CREATE_SHORTCUT" />
436 <category android:name="android.intent.category.DEFAULT" />
437 </intent-filter>
438
439 </activity-alias>
440
Dianne Hackborn333a6152009-05-26 12:46:23 -0700441 <activity-alias android:name="alias.DialShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700442 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700443 android:label="@string/shortcutDialContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800444 android:icon="@mipmap/ic_launcher_shortcut_directdial"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700445 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700446
447 <intent-filter>
448 <action android:name="android.intent.action.CREATE_SHORTCUT" />
449 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200450 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700451 </intent-filter>
452
453 </activity-alias>
454
455 <activity-alias android:name="alias.MessageShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700456 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700457 android:label="@string/shortcutMessageContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800458 android:icon="@mipmap/ic_launcher_shortcut_directmessage"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700459 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700460
461 <intent-filter>
462 <action android:name="android.intent.action.CREATE_SHORTCUT" />
463 <category android:name="android.intent.category.DEFAULT" />
464 </intent-filter>
465
466 </activity-alias>
467
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800468 <activity android:name="CallDetailActivity"
469 android:label="@string/callDetailTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700470 android:theme="@style/CallDetailActivityTheme"
Flavio Lerdac03b1182011-07-22 15:44:08 +0100471 android:screenOrientation="nosensor"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700472 android:taskAffinity="android.task.contacts.phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800473 >
474 <intent-filter>
475 <action android:name="android.intent.action.VIEW" />
476 <category android:name="android.intent.category.DEFAULT" />
477 <data android:mimeType="vnd.android.cursor.item/calls" />
478 </intent-filter>
479 </activity>
480
481 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700482 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800483 android:label="@string/viewContactTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700484 android:theme="@style/ContactDetailActivityTheme">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700485
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800486 <intent-filter android:label="@string/viewContactDesription">
487 <action android:name="android.intent.action.VIEW" />
488 <category android:name="android.intent.category.DEFAULT" />
Daniel Lehmannc90c7052011-03-16 18:42:34 -0700489 <data android:mimeType="vnd.android.cursor.dir/person" />
490 <data android:mimeType="vnd.android.cursor.dir/contact" />
491 <data android:mimeType="vnd.android.cursor.item/person" />
492 <data android:mimeType="vnd.android.cursor.item/contact" />
493 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800494 </intent-filter>
495 </activity>
496
Daniel Lehmannf319cf82010-06-25 17:41:13 -0700497 <!-- Create a new or edit an existing contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700498 <activity
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700499 android:name=".activities.ContactEditorActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700500 android:theme="@style/ContactEditorActivityTheme"
Daniel Lehmann3a120772010-06-21 16:21:35 -0700501 android:windowSoftInputMode="adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700502
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800503 <intent-filter android:label="@string/editContactDescription">
504 <action android:name="android.intent.action.EDIT" />
505 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800506 <data android:mimeType="vnd.android.cursor.item/person" />
507 <data android:mimeType="vnd.android.cursor.item/contact" />
508 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800509 </intent-filter>
510 <intent-filter android:label="@string/insertContactDescription">
511 <action android:name="android.intent.action.INSERT" />
512 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700513 <data android:mimeType="vnd.android.cursor.dir/person" />
514 <data android:mimeType="vnd.android.cursor.dir/contact" />
515 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800516 </intent-filter>
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700517 </activity>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700518
Dmitri Plotnikov43fd1e82011-01-09 11:29:39 -0800519 <activity android:name=".test.FragmentTestActivity">
520 <intent-filter>
521 <category android:name="android.intent.category.TEST" />
522 </intent-filter>
523 </activity>
524
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700525 <!-- Stub service used to keep our process alive long enough for
526 background threads to finish their operations. -->
527 <service
528 android:name=".util.EmptyService"
529 android:exported="false" />
530
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700531 <!-- Service to save a contact -->
532 <service
Dmitri Plotnikov72f2b7a2010-12-03 18:46:31 -0800533 android:name=".ContactSaveService"
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700534 android:exported="false" />
535
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800536 <!-- Attaches a photo to a contact. Started from external applications -->
Dmitri Plotnikov19d51ac2011-01-04 14:30:24 -0800537 <activity android:name=".activities.AttachPhotoActivity"
Daniel Lehmann9442ef42010-11-09 17:35:53 -0800538 android:label="@string/attach_photo_dialog_title"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800539 android:taskAffinity="">
540 <intent-filter>
541 <action android:name="android.intent.action.ATTACH_DATA" />
542 <data android:mimeType="image/*" />
543 <category android:name="android.intent.category.DEFAULT" />
544 </intent-filter>
545 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700546 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800547
Dmitri Plotnikov884e3932010-05-13 19:13:51 -0700548 <!-- Interstitial activity that shows a phone disambig dialog -->
549 <activity android:name="CallContactActivity"
550 android:theme="@android:style/Theme.Translucent">
551 </activity>
552
Katherine Kuan9856fce2011-06-01 10:24:09 -0700553 <!-- Makes .PeopleActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800554 <meta-data
555 android:name="android.app.default_searchable"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700556 android:value=".activities.PeopleActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800557
558
559 <!-- LIVE FOLDERS -->
560 <activity
561 android:name=".ContactsLiveFolders$AllContacts"
562 android:label="@string/liveFolderAll"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800563 android:icon="@mipmap/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800564 <intent-filter>
565 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
566 <category android:name="android.intent.category.DEFAULT" />
567 </intent-filter>
568 </activity>
569
570 <activity
571 android:name=".ContactsLiveFolders$StarredContacts"
572 android:label="@string/liveFolderFavorites"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800573 android:icon="@mipmap/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800574 <intent-filter>
575 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
576 <category android:name="android.intent.category.DEFAULT" />
577 </intent-filter>
578 </activity>
579
580 <activity
581 android:name=".ContactsLiveFolders$PhoneContacts"
582 android:label="@string/liveFolderPhone"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800583 android:icon="@mipmap/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800584 <intent-filter>
585 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
586 <category android:name="android.intent.category.DEFAULT" />
587 </intent-filter>
588 </activity>
589
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700590 <!-- vCard related -->
591 <activity android:name=".vcard.ImportVCardActivity"
Daisuke Miyakawa4baff1e2011-04-07 14:28:37 -0700592 android:configChanges="orientation|screenSize|keyboardHidden"
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900593 android:theme="@style/BackgroundOnly">
594 <intent-filter>
Jeff Hamiltone967f7c2011-06-30 12:01:23 -0500595 <action android:name="android.nfc.action.NDEF_DISCOVERED" />
596 <data android:mimeType="text/x-vcard" />
597 <data android:mimeType="text/x-vCard" />
598 <data android:mimeType="text/vcard" />
599 <category android:name="android.intent.category.DEFAULT" />
600 </intent-filter>
601 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800602 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700603 <data android:mimeType="text/directory" />
Daisuke Miyakawa92ba98a2010-06-22 09:12:19 +0900604 <data android:mimeType="text/vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800605 <data android:mimeType="text/x-vcard" />
606 <category android:name="android.intent.category.DEFAULT" />
607 </intent-filter>
608 </activity>
609
Daisuke Miyakawaab596602010-11-18 17:28:02 -0800610 <activity android:name=".vcard.CancelActivity"
Daisuke Miyakawa18b51902010-08-19 14:13:38 -0700611 android:theme="@style/BackgroundOnly" />
612
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700613 <activity android:name=".vcard.SelectAccountActivity"
Daisuke Miyakawa6d2f27f2010-04-21 16:11:38 +0900614 android:theme="@style/BackgroundOnly" />
615
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700616 <activity android:name=".vcard.ExportVCardActivity"
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700617 android:theme="@style/BackgroundOnly" />
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700618
Daisuke Miyakawad8fb81a2010-06-08 17:44:22 -0700619 <service
620 android:name=".vcard.VCardService"
621 android:exported="false" />
622
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700623 <!-- Pinned header list demo -->
624 <activity android:name=".widget.PinnedHeaderListDemoActivity">
625 <intent-filter>
626 <action android:name="android.intent.action.MAIN" />
627 <category android:name="android.intent.category.DEFAULT" />
628 </intent-filter>
629 </activity>
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700630
631 <!-- The widget that shows details and the social stream of a contact -->
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700632 <receiver android:name=".socialwidget.SocialWidgetProvider"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700633 android:label="@string/social_widget_label" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700634 <intent-filter>
635 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
636 </intent-filter>
637 <meta-data android:name="android.appwidget.provider"
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700638 android:resource="@xml/social_widget_info" />
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700639 </receiver>
640
Flavio Lerdab78b7092011-07-26 13:38:44 +0100641 <receiver android:name=".calllog.CallLogReceiver">
Flavio Lerda87bd5362011-06-30 12:20:43 +0100642 <intent-filter>
643 <action android:name="android.intent.action.NEW_VOICEMAIL" />
644 <data
645 android:scheme="content"
646 android:host="com.android.voicemail"
647 />
648 </intent-filter>
Flavio Lerdab78b7092011-07-26 13:38:44 +0100649 <intent-filter android:priority="100">
650 <action android:name="android.intent.action.BOOT_COMPLETED"/>
651 </intent-filter>
Flavio Lerda87bd5362011-06-30 12:20:43 +0100652 </receiver>
653
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700654 <activity
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700655 android:name=".socialwidget.SocialWidgetConfigureActivity"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700656 android:theme="@android:style/Theme.Translucent.NoTitleBar" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700657 <intent-filter>
658 <action android:name="android.intent.action.APPWIDGET_PICK" />
659 </intent-filter>
660 </activity>
Flavio Lerdab78b7092011-07-26 13:38:44 +0100661
662 <service
663 android:name=".calllog.CallLogNotificationsService"
664 android:exported="false"
665 />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800666 </application>
667</manifest>