blob: f10ae75b9a634952d3b748d611007b743975a8e8 [file] [log] [blame]
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2006 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
Neel Parekhbe406ff2009-09-16 15:31:22 -07007
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -08008 http://www.apache.org/licenses/LICENSE-2.0
Neel Parekhbe406ff2009-09-16 15:31:22 -07009
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080010 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Jeff Sharkey26c7e732009-04-01 17:30:46 -070018 package="com.android.contacts"
19 android:sharedUserId="android.uid.shared"
Dianne Hackborn15a5ad82010-06-22 16:09:43 -070020 android:sharedUserLabel="@string/sharedUserLabel"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080021>
Jeff Sharkey26c7e732009-04-01 17:30:46 -070022
Jeff Hamiltone7883532010-02-11 16:25:48 -060023 <original-package android:name="com.android.contacts" />
24
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080025 <uses-permission android:name="android.permission.CALL_PRIVILEGED" />
26 <uses-permission android:name="android.permission.READ_CONTACTS" />
27 <uses-permission android:name="android.permission.WRITE_CONTACTS" />
Dave Santoro0a4d2252011-05-20 11:40:34 -070028 <uses-permission android:name="android.permission.READ_PROFILE" />
29 <uses-permission android:name="android.permission.WRITE_PROFILE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080030 <uses-permission android:name="android.permission.INTERNET" />
Martijn Coenen8bd40652011-06-15 15:55:05 +020031 <uses-permission android:name="android.permission.NFC" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080032 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
33 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
34 <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" />
Daisuke Miyakawa2991dd92009-05-19 08:32:17 +090035 <uses-permission android:name="android.permission.WAKE_LOCK" />
Daisuke Miyakawa72c50522009-07-07 15:37:59 -070036 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Dmitri Plotnikovdaa2d5c2010-01-29 17:44:20 -080037 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Fred Quintana104b7922009-07-22 20:01:15 -070038 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
Nicolas Catania9bcf4702009-11-06 13:19:43 -080039 <uses-permission android:name="android.permission.VIBRATE" />
Dmitri Plotnikov99811722010-11-01 18:21:22 -070040 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080041
42 <application
Dmitri Plotnikovf049ff02010-11-29 10:15:24 -080043 android:name="com.android.contacts.ContactsApplication"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080044 android:label="@string/contactsList"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -080045 android:icon="@mipmap/ic_launcher_contacts"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080046 android:process="android.process.acore"
47 android:taskAffinity="android.task.contacts"
Daniel Lehmann57b5aa12010-09-23 17:42:23 -070048 android:hardwareAccelerated="true"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080049 >
50
Daniel Lehmannf1054f12011-05-05 21:06:42 -070051 <!-- A virtual 12 key dialer -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -070052 <activity android:name=".activities.DialpadActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080053 android:launchMode="singleTop"
54 >
55 <intent-filter>
56 <action android:name="com.android.phone.action.TOUCH_DIALER" />
57 <category android:name="android.intent.category.DEFAULT" />
58 <category android:name="android.intent.category.TAB" />
59 </intent-filter>
60 </activity>
61
Daniel Lehmannf1054f12011-05-05 21:06:42 -070062 <!-- A list of recent calls -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -070063 <activity android:name=".activities.CallLogActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080064 android:label="@string/recentCallsIconLabel"
65 >
66 <intent-filter>
67 <action android:name="com.android.phone.action.RECENT_CALLS" />
68 <category android:name="android.intent.category.DEFAULT" />
69 <category android:name="android.intent.category.TAB" />
70 </intent-filter>
71 </activity>
72
Daniel Lehmanne9b196e2010-10-26 12:17:39 -070073 <!-- Intercept Dialer Intents for devices without a phone.
74 This activity should have the same intent filters as the DialtactsActivity,
75 so that its capturing the same events. Omit android.intent.category.LAUNCHER, because we
76 don't want this to show up in the Launcher. The priorities of the intent-filters
77 are set lower, so that the user does not see a disambig dialog -->
78 <activity
79 android:name=".activities.NonPhoneActivity"
80 android:theme="@style/NonPhoneActivityTheme"
81 >
82 <intent-filter android:priority="-1">
83 <action android:name="android.intent.action.DIAL" />
84 <category android:name="android.intent.category.DEFAULT" />
85 <category android:name="android.intent.category.BROWSABLE" />
86 <data android:mimeType="vnd.android.cursor.item/phone" />
87 <data android:mimeType="vnd.android.cursor.item/person" />
88 </intent-filter>
89 <intent-filter android:priority="-1">
90 <action android:name="android.intent.action.DIAL" />
91 <category android:name="android.intent.category.DEFAULT" />
92 <category android:name="android.intent.category.BROWSABLE" />
93 <data android:scheme="voicemail" />
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 </intent-filter>
99 <intent-filter android:priority="-1">
100 <action android:name="android.intent.action.MAIN" />
101 <category android:name="android.intent.category.DEFAULT" />
102 <category android:name="android.intent.category.BROWSABLE" />
103 </intent-filter>
104 <intent-filter android:priority="-1">
105 <action android:name="android.intent.action.VIEW" />
106 <action android:name="android.intent.action.DIAL" />
107 <category android:name="android.intent.category.DEFAULT" />
108 <category android:name="android.intent.category.BROWSABLE" />
109 <data android:scheme="tel" />
110 </intent-filter>
111 <intent-filter android:priority="-1">
112 <action android:name="android.intent.action.VIEW" />
113 <category android:name="android.intent.category.DEFAULT" />
114 <category android:name="android.intent.category.BROWSABLE" />
115 <data android:mimeType="vnd.android.cursor.dir/calls" />
116 </intent-filter>
117 <intent-filter android:priority="-1">
118 <action android:name="android.intent.action.CALL_BUTTON" />
119 <category android:name="android.intent.category.DEFAULT" />
120 <category android:name="android.intent.category.BROWSABLE" />
121 </intent-filter>
122 </activity>
123
Daniel Lehmann7675e122010-04-21 17:31:11 -0700124 <!-- Tab container for all tabs -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -0700125 <activity android:name=".activities.DialtactsActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800126 android:label="@string/launcherDialer"
Nicolas Catania177d88f2009-09-27 15:15:05 -0700127 android:theme="@style/DialtactsTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800128 android:launchMode="singleTask"
129 android:clearTaskOnLaunch="true"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800130 android:icon="@mipmap/ic_launcher_phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800131 android:screenOrientation="nosensor"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700132 android:enabled="@*android:bool/config_voice_capable"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700133 android:taskAffinity="android.task.contacts.phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800134 >
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:mimeType="vnd.android.cursor.item/phone" />
140 <data android:mimeType="vnd.android.cursor.item/person" />
141 </intent-filter>
142 <intent-filter>
143 <action android:name="android.intent.action.DIAL" />
144 <category android:name="android.intent.category.DEFAULT" />
145 <category android:name="android.intent.category.BROWSABLE" />
146 <data android:scheme="voicemail" />
147 </intent-filter>
148 <intent-filter>
149 <action android:name="android.intent.action.DIAL" />
150 <category android:name="android.intent.category.DEFAULT" />
151 </intent-filter>
152 <intent-filter>
153 <action android:name="android.intent.action.MAIN" />
154 <category android:name="android.intent.category.DEFAULT" />
155 <category android:name="android.intent.category.LAUNCHER" />
156 <category android:name="android.intent.category.BROWSABLE" />
157 </intent-filter>
158 <intent-filter>
159 <action android:name="android.intent.action.VIEW" />
160 <action android:name="android.intent.action.DIAL" />
161 <category android:name="android.intent.category.DEFAULT" />
162 <category android:name="android.intent.category.BROWSABLE" />
163 <data android:scheme="tel" />
164 </intent-filter>
165 <intent-filter>
166 <action android:name="android.intent.action.VIEW" />
167 <category android:name="android.intent.category.DEFAULT" />
168 <category android:name="android.intent.category.BROWSABLE" />
169 <data android:mimeType="vnd.android.cursor.dir/calls" />
170 </intent-filter>
171 <intent-filter>
172 <action android:name="android.intent.action.CALL_BUTTON" />
173 <category android:name="android.intent.category.DEFAULT" />
174 <category android:name="android.intent.category.BROWSABLE" />
175 </intent-filter>
176 </activity>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700177
Katherine Kuan9856fce2011-06-01 10:24:09 -0700178 <!-- The main Contacts activity with the contact list, favorites, and groups. -->
179 <activity android:name=".activities.PeopleActivity"
180 android:label="@string/people"
181 android:theme="@style/PeopleTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800182 android:clearTaskOnLaunch="true"
183 android:launchMode="singleTop"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800184 >
185 <intent-filter>
186 <action android:name="android.intent.action.MAIN" />
187 <category android:name="android.intent.category.DEFAULT" />
188 <category android:name="android.intent.category.LAUNCHER" />
Dmitri Plotnikov032bb362009-05-06 17:05:39 -0700189 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800190 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800191 <intent-filter>
192 <action android:name="com.android.contacts.action.LIST_DEFAULT" />
193 <category android:name="android.intent.category.DEFAULT" />
194 <category android:name="android.intent.category.TAB" />
195 </intent-filter>
196
197 <intent-filter>
198 <action android:name="com.android.contacts.action.LIST_CONTACTS" />
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_ALL_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_CONTACTS_WITH_PHONES" />
211 <category android:name="android.intent.category.DEFAULT" />
212 <category android:name="android.intent.category.TAB" />
213 </intent-filter>
214
215 <intent-filter android:label="@string/starredList">
216 <action android:name="com.android.contacts.action.LIST_STARRED" />
217 <category android:name="android.intent.category.DEFAULT" />
218 <category android:name="android.intent.category.TAB" />
219 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700220
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800221 <intent-filter android:label="@string/frequentList">
222 <action android:name="com.android.contacts.action.LIST_FREQUENT" />
223 <category android:name="android.intent.category.DEFAULT" />
224 <category android:name="android.intent.category.TAB" />
225 </intent-filter>
226
227 <intent-filter android:label="@string/strequentList">
228 <action android:name="com.android.contacts.action.LIST_STREQUENT" />
229 <category android:name="android.intent.category.DEFAULT" />
230 <category android:name="android.intent.category.TAB" />
231 </intent-filter>
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700232
233 <intent-filter>
234 <action android:name="android.intent.action.SEARCH" />
235 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov0edd4072011-01-19 10:10:10 -0800236 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700237 </intent-filter>
238
239 <intent-filter>
Dmitri Plotnikov30b99712011-01-20 09:29:44 -0800240 <action android:name="android.intent.action.SEARCH" />
241 <category android:name="android.intent.category.DEFAULT" />
242 </intent-filter>
243
244 <intent-filter>
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700245 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
246 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800247 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700248 </intent-filter>
249
250 <meta-data android:name="android.app.searchable"
251 android:resource="@xml/searchable"
252 />
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700253 </activity>
254
255 <activity android:name=".activities.ContactSelectionActivity"
256 android:label="@string/contactsList"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700257 android:theme="@style/ContactPickerTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800258 android:launchMode="singleTop"
259 android:clearTaskOnLaunch="true"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700260 >
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800261 <intent-filter>
262 <action android:name="android.intent.action.INSERT_OR_EDIT" />
263 <category android:name="android.intent.category.DEFAULT" />
264 <data android:mimeType="vnd.android.cursor.item/person" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700265 <data android:mimeType="vnd.android.cursor.item/contact" />
266 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800267 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700268
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800269 <intent-filter>
270 <action android:name="android.intent.action.PICK" />
271 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800272 <data android:mimeType="vnd.android.cursor.dir/contact" />
273 <data android:mimeType="vnd.android.cursor.dir/person" />
274 <data android:mimeType="vnd.android.cursor.dir/phone_v2" />
275 <data android:mimeType="vnd.android.cursor.dir/phone" />
276 <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" />
277 <data android:mimeType="vnd.android.cursor.dir/postal-address" />
Daniel Lehmannc86ace72011-03-23 21:04:29 -0700278 <data android:mimeType="vnd.android.cursor.dir/email_v2" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800279 </intent-filter>
280
281 <intent-filter>
282 <action android:name="android.intent.action.GET_CONTENT" />
283 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800284 <data android:mimeType="vnd.android.cursor.item/contact" />
285 <data android:mimeType="vnd.android.cursor.item/person" />
286 <data android:mimeType="vnd.android.cursor.item/phone_v2" />
287 <data android:mimeType="vnd.android.cursor.item/phone" />
288 <data android:mimeType="vnd.android.cursor.item/postal-address_v2" />
289 <data android:mimeType="vnd.android.cursor.item/postal-address" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800290 </intent-filter>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700291 </activity>
292
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700293 <!-- Backwards compatibility: somebody may have hard coded this activity name -->
294 <activity-alias android:name="ContactsListActivity"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700295 android:targetActivity=".activities.PeopleActivity"
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700296 />
297
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700298 <!-- An activity for joining contacts -->
Dmitri Plotnikovd21ddb22010-11-03 14:25:59 -0700299 <activity android:name=".activities.JoinContactActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700300 android:theme="@style/JoinContactActivityTheme"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700301 android:clearTaskOnLaunch="true"
302 >
303 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700304 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700305 <category android:name="android.intent.category.DEFAULT" />
306 </intent-filter>
307 </activity>
308
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700309 <!-- Used to set options -->
Daniel Lehmann10105742010-07-15 17:35:57 -0700310 <activity
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700311 android:name=".preference.ContactsPreferenceActivity"
312 android:label="@string/activity_title_settings"
Daniel Lehmann10105742010-07-15 17:35:57 -0700313 android:theme="@style/ContactsPreferencesTheme" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700314
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700315 <!-- Used to select display and sync groups -->
316 <activity
317 android:name=".list.CustomContactListFilterActivity"
318 android:label="@string/custom_list_filter"
Dmitri Plotnikova4d6a3b2010-10-06 18:04:31 -0700319 android:theme="@style/CustomContactListFilterTheme" />
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700320
Jeff Sharkey802b2052009-08-04 14:21:06 -0700321 <activity
Daniel Lehmann72af89f2010-10-18 15:15:59 -0700322 android:name=".activities.ShowOrCreateActivity"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700323 android:theme="@android:style/Theme.Translucent.NoTitleBar">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700324
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700325 <intent-filter>
326 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700327 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700328 <data android:scheme="mailto" />
329 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700330 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700331 </activity>
332
Katherine Kuan9add0e52011-05-10 18:26:15 -0700333
334 <!-- List of groups -->
335 <activity android:name=".activities.GroupBrowserActivity"
336 android:label="@string/contactsGroupsLabel"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700337 android:theme="@style/PeopleTheme"
Katherine Kuan9add0e52011-05-10 18:26:15 -0700338 android:launchMode="singleTop"
339 android:clearTaskOnLaunch="true">
340 <!-- TODO: Remove this temporary intent action name when the fragmentization
341 work is done. -->
342 <intent-filter>
343 <action android:name="com.android.phone.action.GROUPS_LIST" />
344 <category android:name="android.intent.category.DEFAULT" />
345 <category android:name="android.intent.category.TAB" />
346 </intent-filter>
347 </activity>
348
Katherine Kuanfd8cded2011-05-11 11:34:56 -0700349 <!-- Views the details of a single group -->
350 <activity android:name=".activities.GroupDetailActivity"
351 android:label=""
352 android:theme="@style/GroupDetailTheme" />
353
Evan Millar0d0ab342009-09-30 19:03:35 -0700354 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700355 temporary hack until we add better framework support. -->
356 <activity
Jeff Sharkeycde73892011-04-07 00:48:02 -0700357 android:name=".quickcontact.QuickContactWindow"
358 android:theme="@style/Theme.QuickContact"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700359 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700360 android:excludeFromRecents="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700361 android:taskAffinity="android.task.quickcontact"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700362 android:windowSoftInputMode="stateUnchanged">
Jeff Sharkey3f177592009-05-18 15:23:12 -0700363
364 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700365 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700366 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800367 <data android:mimeType="vnd.android.cursor.item/contact" />
368 <data android:mimeType="vnd.android.cursor.item/person" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700369 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800370 </activity>
371
Daniel Lehmannaf8e3862010-11-19 15:38:44 -0800372 <!-- Flushes the QuickContact IntentCache -->
373 <receiver android:name=".quickcontact.PackageIntentReceiver">
374 <intent-filter>
375 <action android:name="android.intent.action.PACKAGE_ADDED" />
376 <data android:scheme="package" />
377 </intent-filter>
378 <intent-filter>
379 <action android:name="android.intent.action.PACKAGE_REPLACED" />
380 <data android:scheme="package" />
381 </intent-filter>
382 <intent-filter>
383 <action android:name="android.intent.action.PACKAGE_REMOVED" />
384 <data android:scheme="package" />
385 </intent-filter>
386 <intent-filter>
387 <action android:name="android.intent.action.PACKAGE_CHANGED" />
388 <data android:scheme="package" />
389 </intent-filter>
390 </receiver>
391
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800392 <activity-alias android:name="ContactShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700393 android:targetActivity=".activities.ContactSelectionActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700394 android:label="@string/shortcutContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800395 android:icon="@mipmap/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800396
397 <intent-filter>
398 <action android:name="android.intent.action.CREATE_SHORTCUT" />
399 <category android:name="android.intent.category.DEFAULT" />
400 </intent-filter>
401
402 </activity-alias>
403
Dianne Hackborn333a6152009-05-26 12:46:23 -0700404 <activity-alias android:name="alias.DialShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700405 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700406 android:label="@string/shortcutDialContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800407 android:icon="@mipmap/ic_launcher_shortcut_directdial"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700408 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700409
410 <intent-filter>
411 <action android:name="android.intent.action.CREATE_SHORTCUT" />
412 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200413 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700414 </intent-filter>
415
416 </activity-alias>
417
418 <activity-alias android:name="alias.MessageShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700419 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700420 android:label="@string/shortcutMessageContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800421 android:icon="@mipmap/ic_launcher_shortcut_directmessage"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700422 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700423
424 <intent-filter>
425 <action android:name="android.intent.action.CREATE_SHORTCUT" />
426 <category android:name="android.intent.category.DEFAULT" />
427 </intent-filter>
428
429 </activity-alias>
430
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800431 <activity android:name="CallDetailActivity"
432 android:label="@string/callDetailTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700433 android:theme="@style/CallDetailActivityTheme"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700434 android:taskAffinity="android.task.contacts.phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800435 >
436 <intent-filter>
437 <action android:name="android.intent.action.VIEW" />
438 <category android:name="android.intent.category.DEFAULT" />
439 <data android:mimeType="vnd.android.cursor.item/calls" />
440 </intent-filter>
441 </activity>
442
443 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700444 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800445 android:label="@string/viewContactTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700446 android:theme="@style/ContactDetailActivityTheme">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700447
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800448 <intent-filter android:label="@string/viewContactDesription">
449 <action android:name="android.intent.action.VIEW" />
450 <category android:name="android.intent.category.DEFAULT" />
Daniel Lehmannc90c7052011-03-16 18:42:34 -0700451 <data android:mimeType="vnd.android.cursor.dir/person" />
452 <data android:mimeType="vnd.android.cursor.dir/contact" />
453 <data android:mimeType="vnd.android.cursor.item/person" />
454 <data android:mimeType="vnd.android.cursor.item/contact" />
455 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800456 </intent-filter>
457 </activity>
458
Daniel Lehmannf319cf82010-06-25 17:41:13 -0700459 <!-- Create a new or edit an existing contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700460 <activity
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700461 android:name=".activities.ContactEditorActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700462 android:theme="@style/ContactEditorActivityTheme"
Daniel Lehmann3a120772010-06-21 16:21:35 -0700463 android:windowSoftInputMode="adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700464
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800465 <intent-filter android:label="@string/editContactDescription">
466 <action android:name="android.intent.action.EDIT" />
467 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800468 <data android:mimeType="vnd.android.cursor.item/person" />
469 <data android:mimeType="vnd.android.cursor.item/contact" />
470 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800471 </intent-filter>
472 <intent-filter android:label="@string/insertContactDescription">
473 <action android:name="android.intent.action.INSERT" />
474 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700475 <data android:mimeType="vnd.android.cursor.dir/person" />
476 <data android:mimeType="vnd.android.cursor.dir/contact" />
477 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800478 </intent-filter>
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700479 </activity>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700480
Dmitri Plotnikov43fd1e82011-01-09 11:29:39 -0800481 <activity android:name=".test.FragmentTestActivity">
482 <intent-filter>
483 <category android:name="android.intent.category.TEST" />
484 </intent-filter>
485 </activity>
486
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700487 <!-- Stub service used to keep our process alive long enough for
488 background threads to finish their operations. -->
489 <service
490 android:name=".util.EmptyService"
491 android:exported="false" />
492
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700493 <!-- Service to save a contact -->
494 <service
Dmitri Plotnikov72f2b7a2010-12-03 18:46:31 -0800495 android:name=".ContactSaveService"
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700496 android:exported="false" />
497
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700498 <!-- Views the details of a single contact -->
499 <activity android:name="ContactOptionsActivity"
500 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700501 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700502 <intent-filter>
503 <action android:name="android.intent.action.EDIT" />
504 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800505 </intent-filter>
506 </activity>
507
508 <!-- Attaches a photo to a contact. Started from external applications -->
Dmitri Plotnikov19d51ac2011-01-04 14:30:24 -0800509 <activity android:name=".activities.AttachPhotoActivity"
Daniel Lehmann9442ef42010-11-09 17:35:53 -0800510 android:label="@string/attach_photo_dialog_title"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800511 android:taskAffinity="">
512 <intent-filter>
513 <action android:name="android.intent.action.ATTACH_DATA" />
514 <data android:mimeType="image/*" />
515 <category android:name="android.intent.category.DEFAULT" />
516 </intent-filter>
517 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700518 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800519
Dmitri Plotnikov884e3932010-05-13 19:13:51 -0700520 <!-- Interstitial activity that shows a phone disambig dialog -->
521 <activity android:name="CallContactActivity"
522 android:theme="@android:style/Theme.Translucent">
523 </activity>
524
Katherine Kuan9856fce2011-06-01 10:24:09 -0700525 <!-- Makes .PeopleActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800526 <meta-data
527 android:name="android.app.default_searchable"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700528 android:value=".activities.PeopleActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800529
530
531 <!-- LIVE FOLDERS -->
532 <activity
533 android:name=".ContactsLiveFolders$AllContacts"
534 android:label="@string/liveFolderAll"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800535 android:icon="@mipmap/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800536 <intent-filter>
537 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
538 <category android:name="android.intent.category.DEFAULT" />
539 </intent-filter>
540 </activity>
541
542 <activity
543 android:name=".ContactsLiveFolders$StarredContacts"
544 android:label="@string/liveFolderFavorites"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800545 android:icon="@mipmap/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800546 <intent-filter>
547 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
548 <category android:name="android.intent.category.DEFAULT" />
549 </intent-filter>
550 </activity>
551
552 <activity
553 android:name=".ContactsLiveFolders$PhoneContacts"
554 android:label="@string/liveFolderPhone"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800555 android:icon="@mipmap/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800556 <intent-filter>
557 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
558 <category android:name="android.intent.category.DEFAULT" />
559 </intent-filter>
560 </activity>
561
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700562 <!-- vCard related -->
563 <activity android:name=".vcard.ImportVCardActivity"
Daisuke Miyakawa4baff1e2011-04-07 14:28:37 -0700564 android:configChanges="orientation|screenSize|keyboardHidden"
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900565 android:theme="@style/BackgroundOnly">
566 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800567 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700568 <data android:mimeType="text/directory" />
Daisuke Miyakawa92ba98a2010-06-22 09:12:19 +0900569 <data android:mimeType="text/vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800570 <data android:mimeType="text/x-vcard" />
571 <category android:name="android.intent.category.DEFAULT" />
572 </intent-filter>
573 </activity>
574
Daisuke Miyakawaab596602010-11-18 17:28:02 -0800575 <activity android:name=".vcard.CancelActivity"
Daisuke Miyakawa18b51902010-08-19 14:13:38 -0700576 android:theme="@style/BackgroundOnly" />
577
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700578 <activity android:name=".vcard.SelectAccountActivity"
Daisuke Miyakawa6d2f27f2010-04-21 16:11:38 +0900579 android:theme="@style/BackgroundOnly" />
580
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700581 <activity android:name=".vcard.ExportVCardActivity"
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700582 android:theme="@style/BackgroundOnly" />
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700583
Daisuke Miyakawad8fb81a2010-06-08 17:44:22 -0700584 <service
585 android:name=".vcard.VCardService"
586 android:exported="false" />
587
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700588 <!-- Pinned header list demo -->
589 <activity android:name=".widget.PinnedHeaderListDemoActivity">
590 <intent-filter>
591 <action android:name="android.intent.action.MAIN" />
592 <category android:name="android.intent.category.DEFAULT" />
593 </intent-filter>
594 </activity>
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700595
596 <!-- The widget that shows details and the social stream of a contact -->
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700597 <receiver android:name=".socialwidget.SocialWidgetProvider"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700598 android:label="@string/social_widget_label" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700599 <intent-filter>
600 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
601 </intent-filter>
602 <meta-data android:name="android.appwidget.provider"
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700603 android:resource="@xml/social_widget_info" />
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700604 </receiver>
605
606 <activity
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700607 android:name=".socialwidget.SocialWidgetConfigureActivity"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700608 android:theme="@android:style/Theme.Translucent.NoTitleBar" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700609 <intent-filter>
610 <action android:name="android.intent.action.APPWIDGET_PICK" />
611 </intent-filter>
612 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800613 </application>
614</manifest>