blob: 47340a01814355ccb453fd0a673322e2ce003f56 [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" />
28 <uses-permission android:name="android.permission.INTERNET" />
29 <uses-permission android:name="android.permission.READ_PHONE_STATE" />
30 <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />
31 <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" />
Daisuke Miyakawa2991dd92009-05-19 08:32:17 +090032 <uses-permission android:name="android.permission.WAKE_LOCK" />
Daisuke Miyakawa72c50522009-07-07 15:37:59 -070033 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Dmitri Plotnikovdaa2d5c2010-01-29 17:44:20 -080034 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
Fred Quintana104b7922009-07-22 20:01:15 -070035 <uses-permission android:name="android.permission.USE_CREDENTIALS" />
Nicolas Catania9bcf4702009-11-06 13:19:43 -080036 <uses-permission android:name="android.permission.VIBRATE" />
Dmitri Plotnikov99811722010-11-01 18:21:22 -070037 <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080038
39 <application
Dmitri Plotnikovf049ff02010-11-29 10:15:24 -080040 android:name="com.android.contacts.ContactsApplication"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080041 android:label="@string/contactsList"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -080042 android:icon="@mipmap/ic_launcher_contacts"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080043 android:process="android.process.acore"
44 android:taskAffinity="android.task.contacts"
Daniel Lehmann57b5aa12010-09-23 17:42:23 -070045 android:hardwareAccelerated="true"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080046 >
47
Daniel Lehmannf1054f12011-05-05 21:06:42 -070048 <!-- A virtual 12 key dialer -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -070049 <activity android:name=".activities.DialpadActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080050 android:launchMode="singleTop"
51 >
52 <intent-filter>
53 <action android:name="com.android.phone.action.TOUCH_DIALER" />
54 <category android:name="android.intent.category.DEFAULT" />
55 <category android:name="android.intent.category.TAB" />
56 </intent-filter>
57 </activity>
58
Daniel Lehmannf1054f12011-05-05 21:06:42 -070059 <!-- A list of recent calls -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -070060 <activity android:name=".activities.CallLogActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -080061 android:label="@string/recentCallsIconLabel"
62 >
63 <intent-filter>
64 <action android:name="com.android.phone.action.RECENT_CALLS" />
65 <category android:name="android.intent.category.DEFAULT" />
66 <category android:name="android.intent.category.TAB" />
67 </intent-filter>
68 </activity>
69
Daniel Lehmanne9b196e2010-10-26 12:17:39 -070070 <!-- Intercept Dialer Intents for devices without a phone.
71 This activity should have the same intent filters as the DialtactsActivity,
72 so that its capturing the same events. Omit android.intent.category.LAUNCHER, because we
73 don't want this to show up in the Launcher. The priorities of the intent-filters
74 are set lower, so that the user does not see a disambig dialog -->
75 <activity
76 android:name=".activities.NonPhoneActivity"
77 android:theme="@style/NonPhoneActivityTheme"
78 >
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:mimeType="vnd.android.cursor.item/phone" />
84 <data android:mimeType="vnd.android.cursor.item/person" />
85 </intent-filter>
86 <intent-filter android:priority="-1">
87 <action android:name="android.intent.action.DIAL" />
88 <category android:name="android.intent.category.DEFAULT" />
89 <category android:name="android.intent.category.BROWSABLE" />
90 <data android:scheme="voicemail" />
91 </intent-filter>
92 <intent-filter android:priority="-1">
93 <action android:name="android.intent.action.DIAL" />
94 <category android:name="android.intent.category.DEFAULT" />
95 </intent-filter>
96 <intent-filter android:priority="-1">
97 <action android:name="android.intent.action.MAIN" />
98 <category android:name="android.intent.category.DEFAULT" />
99 <category android:name="android.intent.category.BROWSABLE" />
100 </intent-filter>
101 <intent-filter android:priority="-1">
102 <action android:name="android.intent.action.VIEW" />
103 <action android:name="android.intent.action.DIAL" />
104 <category android:name="android.intent.category.DEFAULT" />
105 <category android:name="android.intent.category.BROWSABLE" />
106 <data android:scheme="tel" />
107 </intent-filter>
108 <intent-filter android:priority="-1">
109 <action android:name="android.intent.action.VIEW" />
110 <category android:name="android.intent.category.DEFAULT" />
111 <category android:name="android.intent.category.BROWSABLE" />
112 <data android:mimeType="vnd.android.cursor.dir/calls" />
113 </intent-filter>
114 <intent-filter android:priority="-1">
115 <action android:name="android.intent.action.CALL_BUTTON" />
116 <category android:name="android.intent.category.DEFAULT" />
117 <category android:name="android.intent.category.BROWSABLE" />
118 </intent-filter>
119 </activity>
120
Daniel Lehmann7675e122010-04-21 17:31:11 -0700121 <!-- Tab container for all tabs -->
Daniel Lehmann09fba0a2011-05-05 18:25:17 -0700122 <activity android:name=".activities.DialtactsActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800123 android:label="@string/launcherDialer"
Nicolas Catania177d88f2009-09-27 15:15:05 -0700124 android:theme="@style/DialtactsTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800125 android:launchMode="singleTask"
126 android:clearTaskOnLaunch="true"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800127 android:icon="@mipmap/ic_launcher_phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800128 android:screenOrientation="nosensor"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700129 android:enabled="@*android:bool/config_voice_capable"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700130 android:taskAffinity="android.task.contacts.phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800131 >
132 <intent-filter>
133 <action android:name="android.intent.action.DIAL" />
134 <category android:name="android.intent.category.DEFAULT" />
135 <category android:name="android.intent.category.BROWSABLE" />
136 <data android:mimeType="vnd.android.cursor.item/phone" />
137 <data android:mimeType="vnd.android.cursor.item/person" />
138 </intent-filter>
139 <intent-filter>
140 <action android:name="android.intent.action.DIAL" />
141 <category android:name="android.intent.category.DEFAULT" />
142 <category android:name="android.intent.category.BROWSABLE" />
143 <data android:scheme="voicemail" />
144 </intent-filter>
145 <intent-filter>
146 <action android:name="android.intent.action.DIAL" />
147 <category android:name="android.intent.category.DEFAULT" />
148 </intent-filter>
149 <intent-filter>
150 <action android:name="android.intent.action.MAIN" />
151 <category android:name="android.intent.category.DEFAULT" />
152 <category android:name="android.intent.category.LAUNCHER" />
153 <category android:name="android.intent.category.BROWSABLE" />
154 </intent-filter>
155 <intent-filter>
156 <action android:name="android.intent.action.VIEW" />
157 <action android:name="android.intent.action.DIAL" />
158 <category android:name="android.intent.category.DEFAULT" />
159 <category android:name="android.intent.category.BROWSABLE" />
160 <data android:scheme="tel" />
161 </intent-filter>
162 <intent-filter>
163 <action android:name="android.intent.action.VIEW" />
164 <category android:name="android.intent.category.DEFAULT" />
165 <category android:name="android.intent.category.BROWSABLE" />
166 <data android:mimeType="vnd.android.cursor.dir/calls" />
167 </intent-filter>
168 <intent-filter>
169 <action android:name="android.intent.action.CALL_BUTTON" />
170 <category android:name="android.intent.category.DEFAULT" />
171 <category android:name="android.intent.category.BROWSABLE" />
172 </intent-filter>
173 </activity>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700174
Katherine Kuan9856fce2011-06-01 10:24:09 -0700175 <!-- The main Contacts activity with the contact list, favorites, and groups. -->
176 <activity android:name=".activities.PeopleActivity"
177 android:label="@string/people"
178 android:theme="@style/PeopleTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800179 android:clearTaskOnLaunch="true"
180 android:launchMode="singleTop"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800181 >
182 <intent-filter>
183 <action android:name="android.intent.action.MAIN" />
184 <category android:name="android.intent.category.DEFAULT" />
185 <category android:name="android.intent.category.LAUNCHER" />
Dmitri Plotnikov032bb362009-05-06 17:05:39 -0700186 <category android:name="android.intent.category.BROWSABLE" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800187 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800188 <intent-filter>
189 <action android:name="com.android.contacts.action.LIST_DEFAULT" />
190 <category android:name="android.intent.category.DEFAULT" />
191 <category android:name="android.intent.category.TAB" />
192 </intent-filter>
193
194 <intent-filter>
195 <action android:name="com.android.contacts.action.LIST_CONTACTS" />
196 <category android:name="android.intent.category.DEFAULT" />
197 <category android:name="android.intent.category.TAB" />
198 </intent-filter>
199
200 <intent-filter>
201 <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" />
202 <category android:name="android.intent.category.DEFAULT" />
203 <category android:name="android.intent.category.TAB" />
204 </intent-filter>
205
206 <intent-filter>
207 <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" />
208 <category android:name="android.intent.category.DEFAULT" />
209 <category android:name="android.intent.category.TAB" />
210 </intent-filter>
211
212 <intent-filter android:label="@string/starredList">
213 <action android:name="com.android.contacts.action.LIST_STARRED" />
214 <category android:name="android.intent.category.DEFAULT" />
215 <category android:name="android.intent.category.TAB" />
216 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700217
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800218 <intent-filter android:label="@string/frequentList">
219 <action android:name="com.android.contacts.action.LIST_FREQUENT" />
220 <category android:name="android.intent.category.DEFAULT" />
221 <category android:name="android.intent.category.TAB" />
222 </intent-filter>
223
224 <intent-filter android:label="@string/strequentList">
225 <action android:name="com.android.contacts.action.LIST_STREQUENT" />
226 <category android:name="android.intent.category.DEFAULT" />
227 <category android:name="android.intent.category.TAB" />
228 </intent-filter>
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700229
230 <intent-filter>
231 <action android:name="android.intent.action.SEARCH" />
232 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov0edd4072011-01-19 10:10:10 -0800233 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700234 </intent-filter>
235
236 <intent-filter>
Dmitri Plotnikov30b99712011-01-20 09:29:44 -0800237 <action android:name="android.intent.action.SEARCH" />
238 <category android:name="android.intent.category.DEFAULT" />
239 </intent-filter>
240
241 <intent-filter>
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700242 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
243 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800244 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700245 </intent-filter>
246
247 <meta-data android:name="android.app.searchable"
248 android:resource="@xml/searchable"
249 />
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700250 </activity>
251
252 <activity android:name=".activities.ContactSelectionActivity"
253 android:label="@string/contactsList"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700254 android:theme="@style/ContactPickerTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800255 android:launchMode="singleTop"
256 android:clearTaskOnLaunch="true"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700257 >
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800258 <intent-filter>
259 <action android:name="android.intent.action.INSERT_OR_EDIT" />
260 <category android:name="android.intent.category.DEFAULT" />
261 <data android:mimeType="vnd.android.cursor.item/person" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700262 <data android:mimeType="vnd.android.cursor.item/contact" />
263 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800264 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700265
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800266 <intent-filter>
267 <action android:name="android.intent.action.PICK" />
268 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800269 <data android:mimeType="vnd.android.cursor.dir/contact" />
270 <data android:mimeType="vnd.android.cursor.dir/person" />
271 <data android:mimeType="vnd.android.cursor.dir/phone_v2" />
272 <data android:mimeType="vnd.android.cursor.dir/phone" />
273 <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" />
274 <data android:mimeType="vnd.android.cursor.dir/postal-address" />
Daniel Lehmannc86ace72011-03-23 21:04:29 -0700275 <data android:mimeType="vnd.android.cursor.dir/email_v2" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800276 </intent-filter>
277
278 <intent-filter>
279 <action android:name="android.intent.action.GET_CONTENT" />
280 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800281 <data android:mimeType="vnd.android.cursor.item/contact" />
282 <data android:mimeType="vnd.android.cursor.item/person" />
283 <data android:mimeType="vnd.android.cursor.item/phone_v2" />
284 <data android:mimeType="vnd.android.cursor.item/phone" />
285 <data android:mimeType="vnd.android.cursor.item/postal-address_v2" />
286 <data android:mimeType="vnd.android.cursor.item/postal-address" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800287 </intent-filter>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700288 </activity>
289
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700290 <!-- Backwards compatibility: somebody may have hard coded this activity name -->
291 <activity-alias android:name="ContactsListActivity"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700292 android:targetActivity=".activities.PeopleActivity"
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700293 />
294
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700295 <!-- An activity for joining contacts -->
Dmitri Plotnikovd21ddb22010-11-03 14:25:59 -0700296 <activity android:name=".activities.JoinContactActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700297 android:theme="@style/JoinContactActivityTheme"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700298 android:clearTaskOnLaunch="true"
299 >
300 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700301 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700302 <category android:name="android.intent.category.DEFAULT" />
303 </intent-filter>
304 </activity>
305
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700306 <!-- Used to set options -->
Daniel Lehmann10105742010-07-15 17:35:57 -0700307 <activity
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700308 android:name=".preference.ContactsPreferenceActivity"
309 android:label="@string/activity_title_settings"
Daniel Lehmann10105742010-07-15 17:35:57 -0700310 android:theme="@style/ContactsPreferencesTheme" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700311
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700312 <!-- Used to select display and sync groups -->
313 <activity
314 android:name=".list.CustomContactListFilterActivity"
315 android:label="@string/custom_list_filter"
Dmitri Plotnikova4d6a3b2010-10-06 18:04:31 -0700316 android:theme="@style/CustomContactListFilterTheme" />
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700317
Jeff Sharkey802b2052009-08-04 14:21:06 -0700318 <activity
Daniel Lehmann72af89f2010-10-18 15:15:59 -0700319 android:name=".activities.ShowOrCreateActivity"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700320 android:theme="@android:style/Theme.Translucent.NoTitleBar">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700321
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700322 <intent-filter>
323 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700324 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700325 <data android:scheme="mailto" />
326 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700327 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700328 </activity>
329
Katherine Kuan9add0e52011-05-10 18:26:15 -0700330
331 <!-- List of groups -->
332 <activity android:name=".activities.GroupBrowserActivity"
333 android:label="@string/contactsGroupsLabel"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700334 android:theme="@style/PeopleTheme"
Katherine Kuan9add0e52011-05-10 18:26:15 -0700335 android:launchMode="singleTop"
336 android:clearTaskOnLaunch="true">
337 <!-- TODO: Remove this temporary intent action name when the fragmentization
338 work is done. -->
339 <intent-filter>
340 <action android:name="com.android.phone.action.GROUPS_LIST" />
341 <category android:name="android.intent.category.DEFAULT" />
342 <category android:name="android.intent.category.TAB" />
343 </intent-filter>
344 </activity>
345
Katherine Kuanfd8cded2011-05-11 11:34:56 -0700346 <!-- Views the details of a single group -->
347 <activity android:name=".activities.GroupDetailActivity"
348 android:label=""
349 android:theme="@style/GroupDetailTheme" />
350
Evan Millar0d0ab342009-09-30 19:03:35 -0700351 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700352 temporary hack until we add better framework support. -->
353 <activity
Jeff Sharkeycde73892011-04-07 00:48:02 -0700354 android:name=".quickcontact.QuickContactWindow"
355 android:theme="@style/Theme.QuickContact"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700356 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700357 android:excludeFromRecents="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700358 android:taskAffinity="android.task.quickcontact"
Jeff Sharkeycde73892011-04-07 00:48:02 -0700359 android:windowSoftInputMode="stateUnchanged">
Jeff Sharkey3f177592009-05-18 15:23:12 -0700360
361 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700362 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700363 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800364 <data android:mimeType="vnd.android.cursor.item/contact" />
365 <data android:mimeType="vnd.android.cursor.item/person" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700366 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800367 </activity>
368
Daniel Lehmannaf8e3862010-11-19 15:38:44 -0800369 <!-- Flushes the QuickContact IntentCache -->
370 <receiver android:name=".quickcontact.PackageIntentReceiver">
371 <intent-filter>
372 <action android:name="android.intent.action.PACKAGE_ADDED" />
373 <data android:scheme="package" />
374 </intent-filter>
375 <intent-filter>
376 <action android:name="android.intent.action.PACKAGE_REPLACED" />
377 <data android:scheme="package" />
378 </intent-filter>
379 <intent-filter>
380 <action android:name="android.intent.action.PACKAGE_REMOVED" />
381 <data android:scheme="package" />
382 </intent-filter>
383 <intent-filter>
384 <action android:name="android.intent.action.PACKAGE_CHANGED" />
385 <data android:scheme="package" />
386 </intent-filter>
387 </receiver>
388
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800389 <activity-alias android:name="ContactShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700390 android:targetActivity=".activities.ContactSelectionActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700391 android:label="@string/shortcutContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800392 android:icon="@mipmap/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800393
394 <intent-filter>
395 <action android:name="android.intent.action.CREATE_SHORTCUT" />
396 <category android:name="android.intent.category.DEFAULT" />
397 </intent-filter>
398
399 </activity-alias>
400
Dianne Hackborn333a6152009-05-26 12:46:23 -0700401 <activity-alias android:name="alias.DialShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700402 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700403 android:label="@string/shortcutDialContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800404 android:icon="@mipmap/ic_launcher_shortcut_directdial"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700405 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700406
407 <intent-filter>
408 <action android:name="android.intent.action.CREATE_SHORTCUT" />
409 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200410 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700411 </intent-filter>
412
413 </activity-alias>
414
415 <activity-alias android:name="alias.MessageShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700416 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700417 android:label="@string/shortcutMessageContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800418 android:icon="@mipmap/ic_launcher_shortcut_directmessage"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700419 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700420
421 <intent-filter>
422 <action android:name="android.intent.action.CREATE_SHORTCUT" />
423 <category android:name="android.intent.category.DEFAULT" />
424 </intent-filter>
425
426 </activity-alias>
427
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800428 <activity android:name="CallDetailActivity"
429 android:label="@string/callDetailTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700430 android:theme="@style/CallDetailActivityTheme"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700431 android:taskAffinity="android.task.contacts.phone"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800432 >
433 <intent-filter>
434 <action android:name="android.intent.action.VIEW" />
435 <category android:name="android.intent.category.DEFAULT" />
436 <data android:mimeType="vnd.android.cursor.item/calls" />
437 </intent-filter>
438 </activity>
439
440 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700441 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800442 android:label="@string/viewContactTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700443 android:theme="@style/ContactDetailActivityTheme">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700444
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800445 <intent-filter android:label="@string/viewContactDesription">
446 <action android:name="android.intent.action.VIEW" />
447 <category android:name="android.intent.category.DEFAULT" />
Daniel Lehmannc90c7052011-03-16 18:42:34 -0700448 <data android:mimeType="vnd.android.cursor.dir/person" />
449 <data android:mimeType="vnd.android.cursor.dir/contact" />
450 <data android:mimeType="vnd.android.cursor.item/person" />
451 <data android:mimeType="vnd.android.cursor.item/contact" />
452 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800453 </intent-filter>
454 </activity>
455
Daniel Lehmannf319cf82010-06-25 17:41:13 -0700456 <!-- Create a new or edit an existing contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700457 <activity
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700458 android:name=".activities.ContactEditorActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700459 android:theme="@style/ContactEditorActivityTheme"
Daniel Lehmann3a120772010-06-21 16:21:35 -0700460 android:windowSoftInputMode="adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700461
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800462 <intent-filter android:label="@string/editContactDescription">
463 <action android:name="android.intent.action.EDIT" />
464 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800465 <data android:mimeType="vnd.android.cursor.item/person" />
466 <data android:mimeType="vnd.android.cursor.item/contact" />
467 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800468 </intent-filter>
469 <intent-filter android:label="@string/insertContactDescription">
470 <action android:name="android.intent.action.INSERT" />
471 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700472 <data android:mimeType="vnd.android.cursor.dir/person" />
473 <data android:mimeType="vnd.android.cursor.dir/contact" />
474 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800475 </intent-filter>
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700476 </activity>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700477
Dmitri Plotnikov43fd1e82011-01-09 11:29:39 -0800478 <activity android:name=".test.FragmentTestActivity">
479 <intent-filter>
480 <category android:name="android.intent.category.TEST" />
481 </intent-filter>
482 </activity>
483
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700484 <!-- Stub service used to keep our process alive long enough for
485 background threads to finish their operations. -->
486 <service
487 android:name=".util.EmptyService"
488 android:exported="false" />
489
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700490 <!-- Service to save a contact -->
491 <service
Dmitri Plotnikov72f2b7a2010-12-03 18:46:31 -0800492 android:name=".ContactSaveService"
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700493 android:exported="false" />
494
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700495 <!-- Views the details of a single contact -->
496 <activity android:name="ContactOptionsActivity"
497 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700498 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700499 <intent-filter>
500 <action android:name="android.intent.action.EDIT" />
501 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800502 </intent-filter>
503 </activity>
504
505 <!-- Attaches a photo to a contact. Started from external applications -->
Dmitri Plotnikov19d51ac2011-01-04 14:30:24 -0800506 <activity android:name=".activities.AttachPhotoActivity"
Daniel Lehmann9442ef42010-11-09 17:35:53 -0800507 android:label="@string/attach_photo_dialog_title"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800508 android:taskAffinity="">
509 <intent-filter>
510 <action android:name="android.intent.action.ATTACH_DATA" />
511 <data android:mimeType="image/*" />
512 <category android:name="android.intent.category.DEFAULT" />
513 </intent-filter>
514 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700515 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800516
Dmitri Plotnikov884e3932010-05-13 19:13:51 -0700517 <!-- Interstitial activity that shows a phone disambig dialog -->
518 <activity android:name="CallContactActivity"
519 android:theme="@android:style/Theme.Translucent">
520 </activity>
521
Katherine Kuan9856fce2011-06-01 10:24:09 -0700522 <!-- Makes .PeopleActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800523 <meta-data
524 android:name="android.app.default_searchable"
Katherine Kuan9856fce2011-06-01 10:24:09 -0700525 android:value=".activities.PeopleActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800526
527
528 <!-- LIVE FOLDERS -->
529 <activity
530 android:name=".ContactsLiveFolders$AllContacts"
531 android:label="@string/liveFolderAll"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800532 android:icon="@mipmap/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800533 <intent-filter>
534 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
535 <category android:name="android.intent.category.DEFAULT" />
536 </intent-filter>
537 </activity>
538
539 <activity
540 android:name=".ContactsLiveFolders$StarredContacts"
541 android:label="@string/liveFolderFavorites"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800542 android:icon="@mipmap/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800543 <intent-filter>
544 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
545 <category android:name="android.intent.category.DEFAULT" />
546 </intent-filter>
547 </activity>
548
549 <activity
550 android:name=".ContactsLiveFolders$PhoneContacts"
551 android:label="@string/liveFolderPhone"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800552 android:icon="@mipmap/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800553 <intent-filter>
554 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
555 <category android:name="android.intent.category.DEFAULT" />
556 </intent-filter>
557 </activity>
558
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700559 <!-- vCard related -->
560 <activity android:name=".vcard.ImportVCardActivity"
Daisuke Miyakawa4baff1e2011-04-07 14:28:37 -0700561 android:configChanges="orientation|screenSize|keyboardHidden"
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900562 android:theme="@style/BackgroundOnly">
563 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800564 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700565 <data android:mimeType="text/directory" />
Daisuke Miyakawa92ba98a2010-06-22 09:12:19 +0900566 <data android:mimeType="text/vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800567 <data android:mimeType="text/x-vcard" />
568 <category android:name="android.intent.category.DEFAULT" />
569 </intent-filter>
570 </activity>
571
Daisuke Miyakawaab596602010-11-18 17:28:02 -0800572 <activity android:name=".vcard.CancelActivity"
Daisuke Miyakawa18b51902010-08-19 14:13:38 -0700573 android:theme="@style/BackgroundOnly" />
574
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700575 <activity android:name=".vcard.SelectAccountActivity"
Daisuke Miyakawa6d2f27f2010-04-21 16:11:38 +0900576 android:theme="@style/BackgroundOnly" />
577
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700578 <activity android:name=".vcard.ExportVCardActivity"
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700579 android:theme="@style/BackgroundOnly" />
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700580
Daisuke Miyakawad8fb81a2010-06-08 17:44:22 -0700581 <service
582 android:name=".vcard.VCardService"
583 android:exported="false" />
584
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700585 <!-- Pinned header list demo -->
586 <activity android:name=".widget.PinnedHeaderListDemoActivity">
587 <intent-filter>
588 <action android:name="android.intent.action.MAIN" />
589 <category android:name="android.intent.category.DEFAULT" />
590 </intent-filter>
591 </activity>
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700592
593 <!-- The widget that shows details and the social stream of a contact -->
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700594 <receiver android:name=".socialwidget.SocialWidgetProvider"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700595 android:label="@string/social_widget_label" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700596 <intent-filter>
597 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
598 </intent-filter>
599 <meta-data android:name="android.appwidget.provider"
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700600 android:resource="@xml/social_widget_info" />
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700601 </receiver>
602
603 <activity
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700604 android:name=".socialwidget.SocialWidgetConfigureActivity"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700605 android:theme="@android:style/Theme.Translucent.NoTitleBar" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700606 <intent-filter>
607 <action android:name="android.intent.action.APPWIDGET_PICK" />
608 </intent-filter>
609 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800610 </application>
611</manifest>