blob: 826fd3d8b6197a36347ae1fe1db7c741f17d58d2 [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"
Dianne Hackborn4a3e9802011-08-05 11:21:03 -070019 android:sharedUserId="android.uid.shared">
Jeff Sharkey26c7e732009-04-01 17:30:46 -070020
Jeff Hamiltone7883532010-02-11 16:25:48 -060021 <original-package android:name="com.android.contacts" />
22
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080023 <uses-permission android:name="android.permission.CALL_PRIVILEGED" />
24 <uses-permission android:name="android.permission.READ_CONTACTS" />
25 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
Daniel Lehmann7be640f2012-03-09 20:12:34 -080026 <uses-permission android:name="android.permission.READ_CALL_LOG" />
27 <uses-permission android:name="android.permission.WRITE_CALL_LOG" />
Katherine Kuanaaa2ad52011-09-02 13:36:52 -070028 <uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
Dianne Hackborn4a3e9802011-08-05 11:21:03 -070029 <uses-permission android:name="android.permission.GET_ACCOUNTS" />
30 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
31 <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
Dave Santoro0a4d2252011-05-20 11:40:34 -070032 <uses-permission android:name="android.permission.READ_PROFILE" />
33 <uses-permission android:name="android.permission.WRITE_PROFILE" />
Dave Santoro41caac82011-10-03 18:24:44 -070034 <uses-permission android:name="android.permission.READ_SOCIAL_STREAM" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080035 <uses-permission android:name="android.permission.INTERNET" />
Martijn Coenen8bd40652011-06-15 15:55:05 +020036 <uses-permission android:name="android.permission.NFC" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080037 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
Hugo Hudsonb002f512011-07-15 17:41:12 +010038 <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080039 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
40 <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" />
Daisuke Miyakawa2991dd92009-05-19 08:32:17 +090041 <uses-permission android:name="android.permission.WAKE_LOCK" />
Daisuke Miyakawa72c50522009-07-07 15:37:59 -070042 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Dmitri Plotnikovdaa2d5c2010-01-29 17:44:20 -080043 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Fred Quintana104b7922009-07-22 20:01:15 -070044 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
Nicolas Catania9bcf4702009-11-06 13:19:43 -080045 <uses-permission android:name="android.permission.VIBRATE" />
Dmitri Plotnikov99811722010-11-01 18:21:22 -070046 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
Debashish Chatterjee37323c22011-08-03 13:22:01 +010047 <uses-permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL" />
Flavio Lerda40d92c42011-07-01 13:47:42 +010048 <uses-permission android:name="com.android.voicemail.permission.READ_WRITE_ALL_VOICEMAIL" />
Jean-Michel Trivid5485072011-11-07 16:27:34 -080049 <uses-permission android:name="android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK" />
Maurice Chu056a8462012-04-11 18:29:32 -070050 <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
Doug Zongker854d3262011-07-19 13:11:58 -070051 <!-- allow broadcasting secret code intents that reboot the phone -->
52 <uses-permission android:name="android.permission.REBOOT" />
Flavio Lerdad1935da2011-09-20 10:29:50 +010053 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080054
55 <application
Dmitri Plotnikovf049ff02010-11-29 10:15:24 -080056 android:name="com.android.contacts.ContactsApplication"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080057 android:label="@string/contactsList"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -080058 android:icon="@mipmap/ic_launcher_contacts"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080059 android:taskAffinity="android.task.contacts"
Daniel Lehmann57b5aa12010-09-23 17:42:23 -070060 android:hardwareAccelerated="true"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080061 >
62
Daniel Lehmanne9b196e2010-10-26 12:17:39 -070063 <!-- Intercept Dialer Intents for devices without a phone.
64 This activity should have the same intent filters as the DialtactsActivity,
65 so that its capturing the same events. Omit android.intent.category.LAUNCHER, because we
66 don't want this to show up in the Launcher. The priorities of the intent-filters
67 are set lower, so that the user does not see a disambig dialog -->
68 <activity
69 android:name=".activities.NonPhoneActivity"
70 android:theme="@style/NonPhoneActivityTheme"
71 >
72 <intent-filter android:priority="-1">
73 <action android:name="android.intent.action.DIAL" />
74 <category android:name="android.intent.category.DEFAULT" />
75 <category android:name="android.intent.category.BROWSABLE" />
76 <data android:mimeType="vnd.android.cursor.item/phone" />
77 <data android:mimeType="vnd.android.cursor.item/person" />
78 </intent-filter>
79 <intent-filter android:priority="-1">
80 <action android:name="android.intent.action.DIAL" />
81 <category android:name="android.intent.category.DEFAULT" />
82 <category android:name="android.intent.category.BROWSABLE" />
83 <data android:scheme="voicemail" />
84 </intent-filter>
85 <intent-filter android:priority="-1">
86 <action android:name="android.intent.action.DIAL" />
87 <category android:name="android.intent.category.DEFAULT" />
88 </intent-filter>
89 <intent-filter android:priority="-1">
90 <action android:name="android.intent.action.MAIN" />
91 <category android:name="android.intent.category.DEFAULT" />
92 <category android:name="android.intent.category.BROWSABLE" />
93 </intent-filter>
94 <intent-filter android:priority="-1">
95 <action android:name="android.intent.action.VIEW" />
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="tel" />
100 </intent-filter>
101 <intent-filter android:priority="-1">
102 <action android:name="android.intent.action.VIEW" />
103 <category android:name="android.intent.category.DEFAULT" />
104 <category android:name="android.intent.category.BROWSABLE" />
105 <data android:mimeType="vnd.android.cursor.dir/calls" />
106 </intent-filter>
107 <intent-filter android:priority="-1">
108 <action android:name="android.intent.action.CALL_BUTTON" />
109 <category android:name="android.intent.category.DEFAULT" />
110 <category android:name="android.intent.category.BROWSABLE" />
111 </intent-filter>
112 </activity>
113
Daisuke Miyakawade158232011-08-15 12:26:55 -0700114 <!-- The entrance point for Phone UI.
115 stateAlwaysHidden is set to suppress keyboard show up on
116 dialpad screen. -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -0700117 <activity android:name=".activities.DialtactsActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800118 android:label="@string/launcherDialer"
Nicolas Catania177d88f2009-09-27 15:15:05 -0700119 android:theme="@style/DialtactsTheme"
Adam Powell84080602011-08-02 16:51:29 -0700120 android:uiOptions="splitActionBarWhenNarrow"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800121 android:launchMode="singleTask"
122 android:clearTaskOnLaunch="true"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800123 android:icon="@mipmap/ic_launcher_phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800124 android:screenOrientation="nosensor"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700125 android:enabled="@*android:bool/config_voice_capable"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700126 android:taskAffinity="android.task.contacts.phone"
Daisuke Miyakawafa96a6b2011-10-18 20:40:41 -0700127 android:windowSoftInputMode="stateAlwaysHidden|adjustNothing">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800128 <intent-filter>
129 <action android:name="android.intent.action.DIAL" />
130 <category android:name="android.intent.category.DEFAULT" />
131 <category android:name="android.intent.category.BROWSABLE" />
132 <data android:mimeType="vnd.android.cursor.item/phone" />
133 <data android:mimeType="vnd.android.cursor.item/person" />
134 </intent-filter>
135 <intent-filter>
136 <action android:name="android.intent.action.DIAL" />
137 <category android:name="android.intent.category.DEFAULT" />
138 <category android:name="android.intent.category.BROWSABLE" />
139 <data android:scheme="voicemail" />
140 </intent-filter>
141 <intent-filter>
142 <action android:name="android.intent.action.DIAL" />
143 <category android:name="android.intent.category.DEFAULT" />
144 </intent-filter>
145 <intent-filter>
146 <action android:name="android.intent.action.MAIN" />
147 <category android:name="android.intent.category.DEFAULT" />
148 <category android:name="android.intent.category.LAUNCHER" />
149 <category android:name="android.intent.category.BROWSABLE" />
150 </intent-filter>
151 <intent-filter>
152 <action android:name="android.intent.action.VIEW" />
153 <action android:name="android.intent.action.DIAL" />
154 <category android:name="android.intent.category.DEFAULT" />
155 <category android:name="android.intent.category.BROWSABLE" />
156 <data android:scheme="tel" />
157 </intent-filter>
158 <intent-filter>
159 <action android:name="android.intent.action.VIEW" />
160 <category android:name="android.intent.category.DEFAULT" />
161 <category android:name="android.intent.category.BROWSABLE" />
162 <data android:mimeType="vnd.android.cursor.dir/calls" />
163 </intent-filter>
164 <intent-filter>
165 <action android:name="android.intent.action.CALL_BUTTON" />
166 <category android:name="android.intent.category.DEFAULT" />
167 <category android:name="android.intent.category.BROWSABLE" />
168 </intent-filter>
Daisuke Miyakawaf4fbfdd2011-08-15 10:26:07 -0700169 <!-- This was never intended to be public, but is here for backward
170 compatibility. Use Intent.ACTION_DIAL instead. -->
171 <intent-filter>
172 <action android:name="com.android.phone.action.TOUCH_DIALER" />
173 <category android:name="android.intent.category.DEFAULT" />
174 <category android:name="android.intent.category.TAB" />
175 </intent-filter>
Flavio Lerda1c6f3812011-10-18 16:04:09 +0100176 <intent-filter android:label="@string/recentCallsIconLabel">
177 <action android:name="com.android.phone.action.RECENT_CALLS" />
178 <category android:name="android.intent.category.DEFAULT" />
179 <category android:name="android.intent.category.TAB" />
180 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800181 </activity>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700182
Katherine Kuan9856fce2011-06-01 10:24:09 -0700183 <!-- The main Contacts activity with the contact list, favorites, and groups. -->
184 <activity android:name=".activities.PeopleActivity"
185 android:label="@string/people"
186 android:theme="@style/PeopleTheme"
Adam Powell84080602011-08-02 16:51:29 -0700187 android:uiOptions="splitActionBarWhenNarrow"
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" />
Jeff Brownd7152b62011-11-28 16:34:58 -0800196 <category android:name="android.intent.category.APP_CONTACTS" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800197 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800198 <intent-filter>
199 <action android:name="com.android.contacts.action.LIST_DEFAULT" />
200 <category android:name="android.intent.category.DEFAULT" />
201 <category android:name="android.intent.category.TAB" />
202 </intent-filter>
203
204 <intent-filter>
205 <action android:name="com.android.contacts.action.LIST_CONTACTS" />
206 <category android:name="android.intent.category.DEFAULT" />
207 <category android:name="android.intent.category.TAB" />
208 </intent-filter>
209
210 <intent-filter>
211 <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" />
212 <category android:name="android.intent.category.DEFAULT" />
213 <category android:name="android.intent.category.TAB" />
214 </intent-filter>
215
216 <intent-filter>
217 <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" />
218 <category android:name="android.intent.category.DEFAULT" />
219 <category android:name="android.intent.category.TAB" />
220 </intent-filter>
221
222 <intent-filter android:label="@string/starredList">
223 <action android:name="com.android.contacts.action.LIST_STARRED" />
224 <category android:name="android.intent.category.DEFAULT" />
225 <category android:name="android.intent.category.TAB" />
226 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700227
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800228 <intent-filter android:label="@string/frequentList">
229 <action android:name="com.android.contacts.action.LIST_FREQUENT" />
230 <category android:name="android.intent.category.DEFAULT" />
231 <category android:name="android.intent.category.TAB" />
232 </intent-filter>
233
234 <intent-filter android:label="@string/strequentList">
235 <action android:name="com.android.contacts.action.LIST_STREQUENT" />
236 <category android:name="android.intent.category.DEFAULT" />
237 <category android:name="android.intent.category.TAB" />
238 </intent-filter>
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700239
240 <intent-filter>
241 <action android:name="android.intent.action.SEARCH" />
242 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov0edd4072011-01-19 10:10:10 -0800243 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700244 </intent-filter>
245
246 <intent-filter>
Dmitri Plotnikov30b99712011-01-20 09:29:44 -0800247 <action android:name="android.intent.action.SEARCH" />
248 <category android:name="android.intent.category.DEFAULT" />
249 </intent-filter>
250
251 <intent-filter>
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700252 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
253 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800254 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700255 </intent-filter>
256
Daisuke Miyakawaf0c46812011-08-23 15:58:21 -0700257 <intent-filter>
258 <action android:name="android.intent.action.VIEW" />
259 <category android:name="android.intent.category.DEFAULT" />
260 <data android:mimeType="vnd.android.cursor.dir/person" />
261 <data android:mimeType="vnd.android.cursor.dir/contact" />
262 </intent-filter>
263
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700264 <meta-data android:name="android.app.searchable"
265 android:resource="@xml/searchable"
266 />
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700267 </activity>
Doug Zongker854d3262011-07-19 13:11:58 -0700268
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700269 <activity android:name=".activities.ContactSelectionActivity"
270 android:label="@string/contactsList"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700271 android:theme="@style/ContactPickerTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800272 android:launchMode="singleTop"
273 android:clearTaskOnLaunch="true"
Daisuke Miyakawaa8729cd2011-10-12 12:27:16 -0700274 android:uiOptions="splitActionBarWhenNarrow">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800275 <intent-filter>
276 <action android:name="android.intent.action.INSERT_OR_EDIT" />
277 <category android:name="android.intent.category.DEFAULT" />
278 <data android:mimeType="vnd.android.cursor.item/person" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700279 <data android:mimeType="vnd.android.cursor.item/contact" />
280 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800281 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700282
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800283 <intent-filter>
284 <action android:name="android.intent.action.PICK" />
285 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800286 <data android:mimeType="vnd.android.cursor.dir/contact" />
287 <data android:mimeType="vnd.android.cursor.dir/person" />
288 <data android:mimeType="vnd.android.cursor.dir/phone_v2" />
289 <data android:mimeType="vnd.android.cursor.dir/phone" />
290 <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" />
291 <data android:mimeType="vnd.android.cursor.dir/postal-address" />
Daniel Lehmannc86ace72011-03-23 21:04:29 -0700292 <data android:mimeType="vnd.android.cursor.dir/email_v2" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800293 </intent-filter>
294
295 <intent-filter>
296 <action android:name="android.intent.action.GET_CONTENT" />
297 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800298 <data android:mimeType="vnd.android.cursor.item/contact" />
299 <data android:mimeType="vnd.android.cursor.item/person" />
300 <data android:mimeType="vnd.android.cursor.item/phone_v2" />
301 <data android:mimeType="vnd.android.cursor.item/phone" />
302 <data android:mimeType="vnd.android.cursor.item/postal-address_v2" />
303 <data android:mimeType="vnd.android.cursor.item/postal-address" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800304 </intent-filter>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700305 </activity>
306
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700307 <!-- Backwards compatibility: somebody may have hard coded this activity name -->
308 <activity-alias android:name="ContactsListActivity"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700309 android:targetActivity=".activities.PeopleActivity"
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700310 />
311
Daniel Lehmanne9b94612011-07-11 11:44:56 -0700312 <!-- Backwards compatibility: "Contacts" from Honeycomb -->
313 <activity-alias android:name=".activities.ContactsFrontDoor"
314 android:targetActivity=".activities.PeopleActivity"
315 android:exported="true"
316 />
317
318 <!-- Backwards compatibility: "Contacts" from Gingerbread and earlier -->
319 <activity-alias android:name="DialtactsContactsEntryActivity"
320 android:targetActivity=".activities.PeopleActivity"
321 android:exported="true"
322 />
323
324 <!-- Backwards compatibility: "Phone" from Gingerbread and earlier -->
325 <activity-alias android:name="DialtactsActivity"
326 android:targetActivity=".activities.DialtactsActivity"
327 android:exported="true"
328 />
329
Flavio Lerda1c6f3812011-10-18 16:04:09 +0100330 <!-- Backwards compatibility: "Call log" from Gingerbread and earlier -->
331 <activity-alias android:name="RecentCallsListActivity"
332 android:targetActivity=".activities.DialtactsActivity"
333 android:exported="true"
334 />
335
336 <!-- Backwards compatibility: "Call log" from ICS -->
337 <activity-alias android:name=".activities.CallLogActivity"
338 android:targetActivity=".activities.DialtactsActivity"
339 android:exported="true"
340 />
341
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700342 <!-- An activity for joining contacts -->
Dmitri Plotnikovd21ddb22010-11-03 14:25:59 -0700343 <activity android:name=".activities.JoinContactActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700344 android:theme="@style/JoinContactActivityTheme"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700345 android:clearTaskOnLaunch="true"
346 >
347 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700348 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700349 <category android:name="android.intent.category.DEFAULT" />
350 </intent-filter>
351 </activity>
352
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700353 <!-- Used to set options -->
Daniel Lehmann10105742010-07-15 17:35:57 -0700354 <activity
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700355 android:name=".preference.ContactsPreferenceActivity"
356 android:label="@string/activity_title_settings"
Daniel Lehmann10105742010-07-15 17:35:57 -0700357 android:theme="@style/ContactsPreferencesTheme" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700358
Katherine Kuan495db432011-07-06 18:58:46 -0700359 <!-- Used to filter contacts list by account -->
360 <activity
361 android:name=".list.AccountFilterActivity"
362 android:label="@string/activity_title_contacts_filter"
363 android:theme="@style/ContactListFilterTheme" />
364
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700365 <!-- Used to select display and sync groups -->
366 <activity
367 android:name=".list.CustomContactListFilterActivity"
368 android:label="@string/custom_list_filter"
Katherine Kuan495db432011-07-06 18:58:46 -0700369 android:theme="@style/ContactListFilterTheme" />
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700370
Jeff Sharkey802b2052009-08-04 14:21:06 -0700371 <activity
Daniel Lehmann72af89f2010-10-18 15:15:59 -0700372 android:name=".activities.ShowOrCreateActivity"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700373 android:theme="@android:style/Theme.Translucent.NoTitleBar">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700374
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700375 <intent-filter>
376 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700377 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700378 <data android:scheme="mailto" />
379 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700380 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700381 </activity>
382
Katherine Kuan9add0e52011-05-10 18:26:15 -0700383 <!-- List of groups -->
384 <activity android:name=".activities.GroupBrowserActivity"
385 android:label="@string/contactsGroupsLabel"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700386 android:theme="@style/PeopleTheme"
Adam Powell84080602011-08-02 16:51:29 -0700387 android:uiOptions="splitActionBarWhenNarrow"
Katherine Kuan9add0e52011-05-10 18:26:15 -0700388 android:launchMode="singleTop"
Katherine Kuanab583952011-08-23 14:20:43 -0700389 android:clearTaskOnLaunch="true"/>
Katherine Kuan9add0e52011-05-10 18:26:15 -0700390
Katherine Kuanfd8cded2011-05-11 11:34:56 -0700391 <!-- Views the details of a single group -->
392 <activity android:name=".activities.GroupDetailActivity"
393 android:label=""
Katherine Kuanab583952011-08-23 14:20:43 -0700394 android:theme="@style/DetailActivityTheme"/>
Katherine Kuanfd8cded2011-05-11 11:34:56 -0700395
Katherine Kuanc6b8afe2011-06-22 19:03:50 -0700396 <!-- Create a new or edit an existing group -->
397 <activity
398 android:name=".activities.GroupEditorActivity"
Katherine Kuanfd709032011-08-02 14:18:16 -0700399 android:theme="@style/EditorActivityTheme"
Katherine Kuanc6b8afe2011-06-22 19:03:50 -0700400 android:windowSoftInputMode="adjustResize" />
401
Evan Millar0d0ab342009-09-30 19:03:35 -0700402 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700403 temporary hack until we add better framework support. -->
404 <activity
Daniel Lehmannedb576a2011-07-27 16:45:13 -0700405 android:name=".quickcontact.QuickContactActivity"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700406 android:theme="@style/Theme.QuickContact"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700407 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700408 android:excludeFromRecents="true"
Daisuke Miyakawa85b9d6f2011-08-02 16:43:49 -0700409 android:noHistory="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700410 android:taskAffinity="android.task.quickcontact"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700411 android:windowSoftInputMode="stateUnchanged">
Jeff Sharkey3f177592009-05-18 15:23:12 -0700412
413 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700414 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700415 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800416 <data android:mimeType="vnd.android.cursor.item/contact" />
417 <data android:mimeType="vnd.android.cursor.item/person" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700418 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800419 </activity>
420
421 <activity-alias android:name="ContactShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700422 android:targetActivity=".activities.ContactSelectionActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700423 android:label="@string/shortcutContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800424 android:icon="@mipmap/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800425
426 <intent-filter>
427 <action android:name="android.intent.action.CREATE_SHORTCUT" />
428 <category android:name="android.intent.category.DEFAULT" />
429 </intent-filter>
430
431 </activity-alias>
432
Dianne Hackborn333a6152009-05-26 12:46:23 -0700433 <activity-alias android:name="alias.DialShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700434 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700435 android:label="@string/shortcutDialContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800436 android:icon="@mipmap/ic_launcher_shortcut_directdial"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700437 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700438
439 <intent-filter>
440 <action android:name="android.intent.action.CREATE_SHORTCUT" />
441 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200442 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700443 </intent-filter>
444
445 </activity-alias>
446
447 <activity-alias android:name="alias.MessageShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700448 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700449 android:label="@string/shortcutMessageContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800450 android:icon="@mipmap/ic_launcher_shortcut_directmessage"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700451 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700452
453 <intent-filter>
454 <action android:name="android.intent.action.CREATE_SHORTCUT" />
455 <category android:name="android.intent.category.DEFAULT" />
456 </intent-filter>
457
458 </activity-alias>
459
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800460 <activity android:name="CallDetailActivity"
461 android:label="@string/callDetailTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700462 android:theme="@style/CallDetailActivityTheme"
Flavio Lerdac03b1182011-07-22 15:44:08 +0100463 android:screenOrientation="nosensor"
Flavio Lerda0db051f2011-08-02 18:47:02 +0100464 android:icon="@mipmap/ic_launcher_phone"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700465 android:taskAffinity="android.task.contacts.phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800466 >
467 <intent-filter>
468 <action android:name="android.intent.action.VIEW" />
469 <category android:name="android.intent.category.DEFAULT" />
470 <data android:mimeType="vnd.android.cursor.item/calls" />
471 </intent-filter>
472 </activity>
473
474 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700475 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800476 android:label="@string/viewContactTitle"
Katherine Kuanab583952011-08-23 14:20:43 -0700477 android:theme="@style/DetailActivityTheme">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700478
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800479 <intent-filter android:label="@string/viewContactDesription">
480 <action android:name="android.intent.action.VIEW" />
481 <category android:name="android.intent.category.DEFAULT" />
Daniel Lehmannc90c7052011-03-16 18:42:34 -0700482 <data android:mimeType="vnd.android.cursor.item/person" />
483 <data android:mimeType="vnd.android.cursor.item/contact" />
484 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800485 </intent-filter>
486 </activity>
487
Katherine Kuan37bddc22011-07-09 17:36:26 -0700488 <!-- Confirm that a single detail will be added to an existing contact -->
489 <activity
490 android:name=".activities.ConfirmAddDetailActivity"
491 android:label="@string/activity_title_confirm_add_detail"
492 android:theme="@style/ConfirmAddDetailDialogTheme"
493 android:windowSoftInputMode="adjustResize"
494 android:exported="false"/>
495
Katherine Kuan0353a242011-09-23 10:38:28 -0700496 <!-- Accounts changed prompt that can appear when creating a new contact. -->
497 <activity
498 android:name=".activities.ContactEditorAccountsChangedActivity"
499 android:theme="@style/ContactEditorAccountsChangedActivityTheme"
500 android:windowSoftInputMode="adjustResize"
501 android:exported="false"/>
502
Daniel Lehmannf319cf82010-06-25 17:41:13 -0700503 <!-- Create a new or edit an existing contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700504 <activity
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700505 android:name=".activities.ContactEditorActivity"
Katherine Kuanfd709032011-08-02 14:18:16 -0700506 android:theme="@style/EditorActivityTheme"
Daniel Lehmann3a120772010-06-21 16:21:35 -0700507 android:windowSoftInputMode="adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700508
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800509 <intent-filter android:label="@string/editContactDescription">
510 <action android:name="android.intent.action.EDIT" />
511 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800512 <data android:mimeType="vnd.android.cursor.item/person" />
513 <data android:mimeType="vnd.android.cursor.item/contact" />
514 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800515 </intent-filter>
516 <intent-filter android:label="@string/insertContactDescription">
517 <action android:name="android.intent.action.INSERT" />
518 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700519 <data android:mimeType="vnd.android.cursor.dir/person" />
520 <data android:mimeType="vnd.android.cursor.dir/contact" />
521 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800522 </intent-filter>
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700523 </activity>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700524
Dmitri Plotnikov43fd1e82011-01-09 11:29:39 -0800525 <activity android:name=".test.FragmentTestActivity">
526 <intent-filter>
527 <category android:name="android.intent.category.TEST" />
528 </intent-filter>
529 </activity>
530
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700531 <!-- Stub service used to keep our process alive long enough for
532 background threads to finish their operations. -->
533 <service
534 android:name=".util.EmptyService"
535 android:exported="false" />
536
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700537 <!-- Service to save a contact -->
538 <service
Dmitri Plotnikov72f2b7a2010-12-03 18:46:31 -0800539 android:name=".ContactSaveService"
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700540 android:exported="false" />
541
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800542 <!-- 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>
Dave Santoro6fa73842011-09-28 14:37:06 -0700551 </activity>
552
553 <!-- Internal photo selection activity -->
554 <activity android:name=".activities.PhotoSelectionActivity"
555 android:theme="@style/Theme.PhotoSelector"
556 android:launchMode="singleTop"
557 android:windowSoftInputMode="stateUnchanged">
Neel Parekhbe406ff2009-09-16 15:31:22 -0700558 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800559
Dmitri Plotnikov884e3932010-05-13 19:13:51 -0700560 <!-- Interstitial activity that shows a phone disambig dialog -->
561 <activity android:name="CallContactActivity"
562 android:theme="@android:style/Theme.Translucent">
563 </activity>
564
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700565 <!-- vCard related -->
566 <activity android:name=".vcard.ImportVCardActivity"
Daisuke Miyakawa4baff1e2011-04-07 14:28:37 -0700567 android:configChanges="orientation|screenSize|keyboardHidden"
Daisuke Miyakawaeaf359d2012-03-22 09:07:06 -0700568 android:screenOrientation="nosensor"
Daisuke Miyakawae8b06c12011-08-29 09:47:34 -0700569 android:theme="@style/BackgroundOnlyTheme">
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900570 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800571 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700572 <data android:mimeType="text/directory" />
Daisuke Miyakawa92ba98a2010-06-22 09:12:19 +0900573 <data android:mimeType="text/vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800574 <data android:mimeType="text/x-vcard" />
Jeff Hamilton1167da42011-08-03 09:38:47 -0500575 <category android:name="android.intent.category.DEFAULT" />
576 </intent-filter>
577 </activity>
578
579 <activity android:name=".vcard.NfcImportVCardActivity"
580 android:configChanges="orientation|screenSize|keyboardHidden"
Daisuke Miyakawae8b06c12011-08-29 09:47:34 -0700581 android:theme="@style/BackgroundOnlyTheme">
Jeff Hamilton1167da42011-08-03 09:38:47 -0500582 <intent-filter>
583 <action android:name="android.nfc.action.NDEF_DISCOVERED" />
584 <data android:mimeType="text/vcard" />
585 <data android:mimeType="text/x-vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800586 <category android:name="android.intent.category.DEFAULT" />
587 </intent-filter>
588 </activity>
589
Daisuke Miyakawaab596602010-11-18 17:28:02 -0800590 <activity android:name=".vcard.CancelActivity"
Daisuke Miyakawae8b06c12011-08-29 09:47:34 -0700591 android:theme="@style/BackgroundOnlyTheme" />
Daisuke Miyakawa18b51902010-08-19 14:13:38 -0700592
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700593 <activity android:name=".vcard.SelectAccountActivity"
Daisuke Miyakawae8b06c12011-08-29 09:47:34 -0700594 android:theme="@style/BackgroundOnlyTheme" />
Daisuke Miyakawa6d2f27f2010-04-21 16:11:38 +0900595
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700596 <activity android:name=".vcard.ExportVCardActivity"
Daisuke Miyakawae8b06c12011-08-29 09:47:34 -0700597 android:theme="@style/BackgroundOnlyTheme" />
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700598
Daisuke Miyakawad8fb81a2010-06-08 17:44:22 -0700599 <service
600 android:name=".vcard.VCardService"
601 android:exported="false" />
602
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700603 <!-- Pinned header list demo -->
604 <activity android:name=".widget.PinnedHeaderListDemoActivity">
605 <intent-filter>
606 <action android:name="android.intent.action.MAIN" />
607 <category android:name="android.intent.category.DEFAULT" />
608 </intent-filter>
609 </activity>
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700610
611 <!-- The widget that shows details and the social stream of a contact -->
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700612 <receiver android:name=".socialwidget.SocialWidgetProvider"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700613 android:label="@string/social_widget_label" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700614 <intent-filter>
615 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
616 </intent-filter>
617 <meta-data android:name="android.appwidget.provider"
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700618 android:resource="@xml/social_widget_info" />
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700619 </receiver>
620
Flavio Lerdaf4ab81d2012-02-24 19:00:01 +0000621 <receiver android:name=".calllog.CallLogReceiver"
622 android:enabled="@*android:bool/config_voice_capable">
Flavio Lerda87bd5362011-06-30 12:20:43 +0100623 <intent-filter>
624 <action android:name="android.intent.action.NEW_VOICEMAIL" />
625 <data
626 android:scheme="content"
627 android:host="com.android.voicemail"
Debashish Chatterjeeb7a508f2011-08-09 14:47:08 +0100628 android:mimeType="vnd.android.cursor.item/voicemail"
Flavio Lerda87bd5362011-06-30 12:20:43 +0100629 />
630 </intent-filter>
Flavio Lerdab78b7092011-07-26 13:38:44 +0100631 <intent-filter android:priority="100">
632 <action android:name="android.intent.action.BOOT_COMPLETED"/>
633 </intent-filter>
Flavio Lerda87bd5362011-06-30 12:20:43 +0100634 </receiver>
635
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700636 <activity
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700637 android:name=".socialwidget.SocialWidgetConfigureActivity"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700638 android:theme="@android:style/Theme.Translucent.NoTitleBar" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700639 <intent-filter>
640 <action android:name="android.intent.action.APPWIDGET_PICK" />
641 </intent-filter>
642 </activity>
Flavio Lerdab78b7092011-07-26 13:38:44 +0100643
644 <service
645 android:name=".calllog.CallLogNotificationsService"
646 android:exported="false"
647 />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800648 </application>
649</manifest>