blob: ec0709f014ff283e03cc6eff8e39b6f225798fca [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
48 <!-- A virtual 12 key dialer -->
49 <activity android:name="TwelveKeyDialer"
50 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
59 <!-- A list of recent calls -->
60 <activity android:name="RecentCallsListActivity"
61 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 -->
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800122 <activity android:name="DialtactsActivity"
123 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"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800130 >
131 <intent-filter>
132 <action android:name="android.intent.action.DIAL" />
133 <category android:name="android.intent.category.DEFAULT" />
134 <category android:name="android.intent.category.BROWSABLE" />
135 <data android:mimeType="vnd.android.cursor.item/phone" />
136 <data android:mimeType="vnd.android.cursor.item/person" />
137 </intent-filter>
138 <intent-filter>
139 <action android:name="android.intent.action.DIAL" />
140 <category android:name="android.intent.category.DEFAULT" />
141 <category android:name="android.intent.category.BROWSABLE" />
142 <data android:scheme="voicemail" />
143 </intent-filter>
144 <intent-filter>
145 <action android:name="android.intent.action.DIAL" />
146 <category android:name="android.intent.category.DEFAULT" />
147 </intent-filter>
148 <intent-filter>
149 <action android:name="android.intent.action.MAIN" />
150 <category android:name="android.intent.category.DEFAULT" />
151 <category android:name="android.intent.category.LAUNCHER" />
152 <category android:name="android.intent.category.BROWSABLE" />
153 </intent-filter>
154 <intent-filter>
155 <action android:name="android.intent.action.VIEW" />
156 <action android:name="android.intent.action.DIAL" />
157 <category android:name="android.intent.category.DEFAULT" />
158 <category android:name="android.intent.category.BROWSABLE" />
159 <data android:scheme="tel" />
160 </intent-filter>
161 <intent-filter>
162 <action android:name="android.intent.action.VIEW" />
163 <category android:name="android.intent.category.DEFAULT" />
164 <category android:name="android.intent.category.BROWSABLE" />
165 <data android:mimeType="vnd.android.cursor.dir/calls" />
166 </intent-filter>
167 <intent-filter>
168 <action android:name="android.intent.action.CALL_BUTTON" />
169 <category android:name="android.intent.category.DEFAULT" />
170 <category android:name="android.intent.category.BROWSABLE" />
171 </intent-filter>
172 </activity>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700173
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500174 <!-- Front door proxy that picks the right UI based on the screen config -->
175 <activity android:name=".activities.ContactsFrontDoor"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800176 android:label="@string/contactsList"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800177 android:icon="@mipmap/ic_launcher_contacts"
Dmitri Plotnikov060b4532010-12-17 12:09:12 -0800178 android:theme="@style/ContactBrowserTheme"
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>
Jeff Hamiltondf4b1462010-06-28 10:40:26 -0500188 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800189
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700190 <!-- The actual list of contacts -->
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700191 <activity android:name=".activities.ContactBrowserActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800192 android:label="@string/contactsList"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700193 android:theme="@style/ContactBrowserTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800194 android:launchMode="singleTop"
195 android:clearTaskOnLaunch="true"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800196 >
197 <intent-filter>
198 <action android:name="com.android.contacts.action.LIST_DEFAULT" />
199 <category android:name="android.intent.category.DEFAULT" />
200 <category android:name="android.intent.category.TAB" />
201 </intent-filter>
202
203 <intent-filter>
204 <action android:name="com.android.contacts.action.LIST_CONTACTS" />
205 <category android:name="android.intent.category.DEFAULT" />
206 <category android:name="android.intent.category.TAB" />
207 </intent-filter>
208
209 <intent-filter>
210 <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" />
211 <category android:name="android.intent.category.DEFAULT" />
212 <category android:name="android.intent.category.TAB" />
213 </intent-filter>
214
215 <intent-filter>
216 <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" />
217 <category android:name="android.intent.category.DEFAULT" />
218 <category android:name="android.intent.category.TAB" />
219 </intent-filter>
220
221 <intent-filter android:label="@string/starredList">
222 <action android:name="com.android.contacts.action.LIST_STARRED" />
223 <category android:name="android.intent.category.DEFAULT" />
224 <category android:name="android.intent.category.TAB" />
225 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700226
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800227 <intent-filter android:label="@string/frequentList">
228 <action android:name="com.android.contacts.action.LIST_FREQUENT" />
229 <category android:name="android.intent.category.DEFAULT" />
230 <category android:name="android.intent.category.TAB" />
231 </intent-filter>
232
233 <intent-filter android:label="@string/strequentList">
234 <action android:name="com.android.contacts.action.LIST_STREQUENT" />
235 <category android:name="android.intent.category.DEFAULT" />
236 <category android:name="android.intent.category.TAB" />
237 </intent-filter>
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700238
239 <intent-filter>
240 <action android:name="android.intent.action.SEARCH" />
241 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikov0edd4072011-01-19 10:10:10 -0800242 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700243 </intent-filter>
244
245 <intent-filter>
Dmitri Plotnikov30b99712011-01-20 09:29:44 -0800246 <action android:name="android.intent.action.SEARCH" />
247 <category android:name="android.intent.category.DEFAULT" />
248 </intent-filter>
249
250 <intent-filter>
Dmitri Plotnikov7b8f7462010-11-02 17:25:08 -0700251 <action android:name="com.android.contacts.action.FILTER_CONTACTS" />
252 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800253 <data android:mimeType="vnd.android.cursor.dir/contact" />
Dmitri Plotnikov27b97bc2010-10-07 18:06:09 -0700254 </intent-filter>
255
256 <meta-data android:name="android.app.searchable"
257 android:resource="@xml/searchable"
258 />
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700259 </activity>
260
261 <activity android:name=".activities.ContactSelectionActivity"
262 android:label="@string/contactsList"
Dmitri Plotnikove1d4c062010-07-15 16:20:36 -0700263 android:theme="@style/ContactPickerTheme"
Dmitri Plotnikovfa49a662011-01-13 11:04:56 -0800264 android:launchMode="singleTop"
265 android:clearTaskOnLaunch="true"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700266 >
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800267 <intent-filter>
268 <action android:name="android.intent.action.INSERT_OR_EDIT" />
269 <category android:name="android.intent.category.DEFAULT" />
270 <data android:mimeType="vnd.android.cursor.item/person" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700271 <data android:mimeType="vnd.android.cursor.item/contact" />
272 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800273 </intent-filter>
Jeff Sharkey26c7e732009-04-01 17:30:46 -0700274
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800275 <intent-filter>
276 <action android:name="android.intent.action.PICK" />
277 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800278 <data android:mimeType="vnd.android.cursor.dir/contact" />
279 <data android:mimeType="vnd.android.cursor.dir/person" />
280 <data android:mimeType="vnd.android.cursor.dir/phone_v2" />
281 <data android:mimeType="vnd.android.cursor.dir/phone" />
282 <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" />
283 <data android:mimeType="vnd.android.cursor.dir/postal-address" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800284 </intent-filter>
285
286 <intent-filter>
287 <action android:name="android.intent.action.GET_CONTENT" />
288 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800289 <data android:mimeType="vnd.android.cursor.item/contact" />
290 <data android:mimeType="vnd.android.cursor.item/person" />
291 <data android:mimeType="vnd.android.cursor.item/phone_v2" />
292 <data android:mimeType="vnd.android.cursor.item/phone" />
293 <data android:mimeType="vnd.android.cursor.item/postal-address_v2" />
294 <data android:mimeType="vnd.android.cursor.item/postal-address" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800295 </intent-filter>
The Android Open Source Project37a16ac2009-03-18 17:39:48 -0700296 </activity>
297
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700298 <!-- Backwards compatibility: somebody may have hard coded this activity name -->
299 <activity-alias android:name="ContactsListActivity"
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700300 android:targetActivity=".activities.ContactBrowserActivity"
Dmitri Plotnikov27834b22010-07-01 14:10:08 -0700301 />
302
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700303 <!-- An activity for joining contacts -->
Dmitri Plotnikovd21ddb22010-11-03 14:25:59 -0700304 <activity android:name=".activities.JoinContactActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700305 android:theme="@style/JoinContactActivityTheme"
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700306 android:clearTaskOnLaunch="true"
307 >
308 <intent-filter>
Dmitri Plotnikov501b7ea2010-04-07 17:20:49 -0700309 <action android:name="com.android.contacts.action.JOIN_CONTACT" />
Dmitri Plotnikov57d27da2009-09-28 18:06:11 -0700310 <category android:name="android.intent.category.DEFAULT" />
311 </intent-filter>
312 </activity>
313
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700314 <!-- Used to set options -->
Daniel Lehmann10105742010-07-15 17:35:57 -0700315 <activity
Dmitri Plotnikovc85ad182010-09-17 18:12:49 -0700316 android:name=".preference.ContactsPreferenceActivity"
317 android:label="@string/activity_title_settings"
Daniel Lehmann10105742010-07-15 17:35:57 -0700318 android:theme="@style/ContactsPreferencesTheme" />
Jeff Sharkeyd5c5b9a2009-06-21 19:46:04 -0700319
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700320 <!-- Used to select display and sync groups -->
321 <activity
322 android:name=".list.CustomContactListFilterActivity"
323 android:label="@string/custom_list_filter"
Dmitri Plotnikova4d6a3b2010-10-06 18:04:31 -0700324 android:theme="@style/CustomContactListFilterTheme" />
Dmitri Plotnikovd6e6b8a2010-09-15 16:23:02 -0700325
Jeff Sharkey802b2052009-08-04 14:21:06 -0700326 <activity
Daniel Lehmann72af89f2010-10-18 15:15:59 -0700327 android:name=".activities.ShowOrCreateActivity"
Jeff Sharkeye8971622009-09-17 15:42:36 -0700328 android:theme="@style/FullyTranslucent">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700329
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700330 <intent-filter>
331 <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" />
Jeff Sharkey802b2052009-08-04 14:21:06 -0700332 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700333 <data android:scheme="mailto" />
334 <data android:scheme="tel" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700335 </intent-filter>
Jeff Sharkeye8971622009-09-17 15:42:36 -0700336 </activity>
337
Evan Millar0d0ab342009-09-30 19:03:35 -0700338 <!-- Used to show QuickContact window over a translucent activity, which is a
Jeff Sharkeye8971622009-09-17 15:42:36 -0700339 temporary hack until we add better framework support. -->
340 <activity
Daniel Lehmann72af89f2010-10-18 15:15:59 -0700341 android:name=".quickcontact.QuickContactActivity"
Jeff Sharkey735e8b12009-09-30 14:57:07 -0700342 android:theme="@style/FullyTranslucent.QuickContact"
343 android:launchMode="singleTop"
Jeff Sharkey5cbf6f42009-10-02 14:22:51 -0700344 android:excludeFromRecents="true"
Dmitri Plotnikovad3bd442010-03-23 22:49:43 -0700345 android:taskAffinity="android.task.quickcontact"
346 android:windowSoftInputMode="stateUnchanged"
347 >
Jeff Sharkey3f177592009-05-18 15:23:12 -0700348
349 <intent-filter>
Evan Millar33b08452009-09-30 21:45:08 -0700350 <action android:name="com.android.contacts.action.QUICK_CONTACT" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700351 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800352 <data android:mimeType="vnd.android.cursor.item/contact" />
353 <data android:mimeType="vnd.android.cursor.item/person" />
The Android Open Source Projecte740e2e2009-03-11 12:11:58 -0700354 </intent-filter>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800355 </activity>
356
Daniel Lehmannaf8e3862010-11-19 15:38:44 -0800357 <!-- Flushes the QuickContact IntentCache -->
358 <receiver android:name=".quickcontact.PackageIntentReceiver">
359 <intent-filter>
360 <action android:name="android.intent.action.PACKAGE_ADDED" />
361 <data android:scheme="package" />
362 </intent-filter>
363 <intent-filter>
364 <action android:name="android.intent.action.PACKAGE_REPLACED" />
365 <data android:scheme="package" />
366 </intent-filter>
367 <intent-filter>
368 <action android:name="android.intent.action.PACKAGE_REMOVED" />
369 <data android:scheme="package" />
370 </intent-filter>
371 <intent-filter>
372 <action android:name="android.intent.action.PACKAGE_CHANGED" />
373 <data android:scheme="package" />
374 </intent-filter>
375 </receiver>
376
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800377 <activity-alias android:name="ContactShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700378 android:targetActivity=".activities.ContactSelectionActivity"
Romain Guy4eb77b62009-03-24 18:10:17 -0700379 android:label="@string/shortcutContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800380 android:icon="@mipmap/ic_launcher_shortcut_contact">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800381
382 <intent-filter>
383 <action android:name="android.intent.action.CREATE_SHORTCUT" />
384 <category android:name="android.intent.category.DEFAULT" />
385 </intent-filter>
386
387 </activity-alias>
388
Dianne Hackborn333a6152009-05-26 12:46:23 -0700389 <activity-alias android:name="alias.DialShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700390 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700391 android:label="@string/shortcutDialContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800392 android:icon="@mipmap/ic_launcher_shortcut_directdial"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700393 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700394
395 <intent-filter>
396 <action android:name="android.intent.action.CREATE_SHORTCUT" />
397 <category android:name="android.intent.category.DEFAULT" />
Bernd Holzheya497ce52010-03-31 10:06:24 +0200398 <category android:name="android.intent.category.CAR_MODE" />
Dianne Hackborn333a6152009-05-26 12:46:23 -0700399 </intent-filter>
400
401 </activity-alias>
402
403 <activity-alias android:name="alias.MessageShortcut"
Dmitri Plotnikovb979b422010-07-01 15:29:15 -0700404 android:targetActivity=".activities.ContactSelectionActivity"
Dianne Hackborn333a6152009-05-26 12:46:23 -0700405 android:label="@string/shortcutMessageContact"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800406 android:icon="@mipmap/ic_launcher_shortcut_directmessage"
Daniel Lehmanne9b196e2010-10-26 12:17:39 -0700407 android:enabled="@*android:bool/config_voice_capable">
Dianne Hackborn333a6152009-05-26 12:46:23 -0700408
409 <intent-filter>
410 <action android:name="android.intent.action.CREATE_SHORTCUT" />
411 <category android:name="android.intent.category.DEFAULT" />
412 </intent-filter>
413
414 </activity-alias>
415
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800416 <activity android:name="CallDetailActivity"
417 android:label="@string/callDetailTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700418 android:theme="@style/CallDetailActivityTheme"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800419 >
420 <intent-filter>
421 <action android:name="android.intent.action.VIEW" />
422 <category android:name="android.intent.category.DEFAULT" />
423 <data android:mimeType="vnd.android.cursor.item/calls" />
424 </intent-filter>
425 </activity>
426
427 <!-- Views the details of a single contact -->
Daniel Lehmann4cd94412010-04-08 16:44:36 -0700428 <activity android:name=".activities.ContactDetailActivity"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800429 android:label="@string/viewContactTitle"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700430 android:theme="@style/ContactDetailActivityTheme">
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700431
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800432 <intent-filter android:label="@string/viewContactDesription">
433 <action android:name="android.intent.action.VIEW" />
434 <category android:name="android.intent.category.DEFAULT" />
Daniel Lehmannc90c7052011-03-16 18:42:34 -0700435 <data android:mimeType="vnd.android.cursor.dir/person" />
436 <data android:mimeType="vnd.android.cursor.dir/contact" />
437 <data android:mimeType="vnd.android.cursor.item/person" />
438 <data android:mimeType="vnd.android.cursor.item/contact" />
439 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800440 </intent-filter>
441 </activity>
442
Daniel Lehmannf319cf82010-06-25 17:41:13 -0700443 <!-- Create a new or edit an existing contact -->
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700444 <activity
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700445 android:name=".activities.ContactEditorActivity"
Daniel Lehmann134e53f2010-08-25 14:21:51 -0700446 android:theme="@style/ContactEditorActivityTheme"
Daniel Lehmann3a120772010-06-21 16:21:35 -0700447 android:windowSoftInputMode="adjustResize">
Jeff Sharkey14f61ab2009-08-05 21:02:37 -0700448
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800449 <intent-filter android:label="@string/editContactDescription">
450 <action android:name="android.intent.action.EDIT" />
451 <category android:name="android.intent.category.DEFAULT" />
Dmitri Plotnikovd11bca22010-12-08 20:15:17 -0800452 <data android:mimeType="vnd.android.cursor.item/person" />
453 <data android:mimeType="vnd.android.cursor.item/contact" />
454 <data android:mimeType="vnd.android.cursor.item/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800455 </intent-filter>
456 <intent-filter android:label="@string/insertContactDescription">
457 <action android:name="android.intent.action.INSERT" />
458 <category android:name="android.intent.category.DEFAULT" />
Jeff Sharkeyd9798ae2009-08-24 20:46:23 -0700459 <data android:mimeType="vnd.android.cursor.dir/person" />
460 <data android:mimeType="vnd.android.cursor.dir/contact" />
461 <data android:mimeType="vnd.android.cursor.dir/raw_contact" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800462 </intent-filter>
Daniel Lehmanncdef2b62010-06-06 18:25:49 -0700463 </activity>
Neel Parekhbe406ff2009-09-16 15:31:22 -0700464
Dmitri Plotnikov43fd1e82011-01-09 11:29:39 -0800465 <activity android:name=".test.FragmentTestActivity">
466 <intent-filter>
467 <category android:name="android.intent.category.TEST" />
468 </intent-filter>
469 </activity>
470
Jeff Sharkey3f0b7b82009-08-12 11:28:53 -0700471 <!-- Stub service used to keep our process alive long enough for
472 background threads to finish their operations. -->
473 <service
474 android:name=".util.EmptyService"
475 android:exported="false" />
476
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700477 <!-- Service to save a contact -->
478 <service
Dmitri Plotnikov72f2b7a2010-12-03 18:46:31 -0800479 android:name=".ContactSaveService"
Daniel Lehmann173ffe12010-06-14 18:19:10 -0700480 android:exported="false" />
481
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700482 <!-- Views the details of a single contact -->
483 <activity android:name="ContactOptionsActivity"
484 android:label="@string/contactOptionsTitle"
Neel Parekhbe406ff2009-09-16 15:31:22 -0700485 >
Dmitri Plotnikovef038722009-06-24 18:51:47 -0700486 <intent-filter>
487 <action android:name="android.intent.action.EDIT" />
488 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800489 </intent-filter>
490 </activity>
491
492 <!-- Attaches a photo to a contact. Started from external applications -->
Dmitri Plotnikov19d51ac2011-01-04 14:30:24 -0800493 <activity android:name=".activities.AttachPhotoActivity"
Daniel Lehmann9442ef42010-11-09 17:35:53 -0800494 android:label="@string/attach_photo_dialog_title"
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800495 android:taskAffinity="">
496 <intent-filter>
497 <action android:name="android.intent.action.ATTACH_DATA" />
498 <data android:mimeType="image/*" />
499 <category android:name="android.intent.category.DEFAULT" />
500 </intent-filter>
501 />
Neel Parekhbe406ff2009-09-16 15:31:22 -0700502 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800503
Dmitri Plotnikov884e3932010-05-13 19:13:51 -0700504 <!-- Interstitial activity that shows a phone disambig dialog -->
505 <activity android:name="CallContactActivity"
506 android:theme="@android:style/Theme.Translucent">
507 </activity>
508
Dmitri Plotnikovea82f902010-08-24 17:22:29 -0700509 <!-- Makes .ContactBrowserActivity the search target for any activity in Contacts -->
Jeff Sharkey6831cd92010-02-28 19:56:58 -0800510 <meta-data
511 android:name="android.app.default_searchable"
Dmitri Plotnikovcfa39002010-07-09 18:05:17 -0700512 android:value=".activities.ContactBrowserActivity" />
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800513
514
515 <!-- LIVE FOLDERS -->
516 <activity
517 android:name=".ContactsLiveFolders$AllContacts"
518 android:label="@string/liveFolderAll"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800519 android:icon="@mipmap/ic_launcher_folder_live_contacts">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800520 <intent-filter>
521 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
522 <category android:name="android.intent.category.DEFAULT" />
523 </intent-filter>
524 </activity>
525
526 <activity
527 android:name=".ContactsLiveFolders$StarredContacts"
528 android:label="@string/liveFolderFavorites"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800529 android:icon="@mipmap/ic_launcher_folder_live_contacts_starred">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800530 <intent-filter>
531 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
532 <category android:name="android.intent.category.DEFAULT" />
533 </intent-filter>
534 </activity>
535
536 <activity
537 android:name=".ContactsLiveFolders$PhoneContacts"
538 android:label="@string/liveFolderPhone"
Daniel Lehmann174eb0a2010-11-23 11:40:02 -0800539 android:icon="@mipmap/ic_launcher_folder_live_contacts_phone">
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800540 <intent-filter>
541 <action android:name="android.intent.action.CREATE_LIVE_FOLDER" />
542 <category android:name="android.intent.category.DEFAULT" />
543 </intent-filter>
544 </activity>
545
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700546 <!-- vCard related -->
547 <activity android:name=".vcard.ImportVCardActivity"
Daisuke Miyakawa74d59da2010-10-28 12:04:30 -0700548 android:configChanges="orientation"
Daisuke Miyakawa6448da72010-04-02 12:06:44 +0900549 android:theme="@style/BackgroundOnly">
550 <intent-filter>
Lixin Yue24fc7632009-12-04 17:03:00 +0800551 <action android:name="android.intent.action.VIEW" />
Attila Bodis1261e132010-03-18 22:06:37 -0700552 <data android:mimeType="text/directory" />
Daisuke Miyakawa92ba98a2010-06-22 09:12:19 +0900553 <data android:mimeType="text/vcard" />
Lixin Yue24fc7632009-12-04 17:03:00 +0800554 <data android:mimeType="text/x-vcard" />
555 <category android:name="android.intent.category.DEFAULT" />
556 </intent-filter>
557 </activity>
558
Daisuke Miyakawaab596602010-11-18 17:28:02 -0800559 <activity android:name=".vcard.CancelActivity"
Daisuke Miyakawa18b51902010-08-19 14:13:38 -0700560 android:theme="@style/BackgroundOnly" />
561
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700562 <activity android:name=".vcard.SelectAccountActivity"
Daisuke Miyakawa6d2f27f2010-04-21 16:11:38 +0900563 android:theme="@style/BackgroundOnly" />
564
Daisuke Miyakawa1b918e52010-06-07 15:48:41 -0700565 <activity android:name=".vcard.ExportVCardActivity"
Daisuke Miyakawa0bec3b92009-09-25 13:33:27 -0700566 android:theme="@style/BackgroundOnly" />
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700567
Daisuke Miyakawad8fb81a2010-06-08 17:44:22 -0700568 <service
569 android:name=".vcard.VCardService"
570 android:exported="false" />
571
Dmitri Plotnikove1247222010-06-02 18:14:21 -0700572 <!-- Pinned header list demo -->
573 <activity android:name=".widget.PinnedHeaderListDemoActivity">
574 <intent-filter>
575 <action android:name="android.intent.action.MAIN" />
576 <category android:name="android.intent.category.DEFAULT" />
577 </intent-filter>
578 </activity>
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700579
580 <!-- The widget that shows details and the social stream of a contact -->
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700581 <receiver android:name=".socialwidget.SocialWidgetProvider"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700582 android:label="@string/social_widget_label" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700583 <intent-filter>
584 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
585 </intent-filter>
586 <meta-data android:name="android.appwidget.provider"
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700587 android:resource="@xml/social_widget_info" />
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700588 </receiver>
589
590 <activity
Daniel Lehmannb93a26c2010-10-18 14:07:05 -0700591 android:name=".socialwidget.SocialWidgetConfigureActivity"
Daniel Lehmannb0ab5d72010-11-03 16:21:22 -0700592 android:theme="@android:style/Theme.Translucent.NoTitleBar" >
Daniel Lehmann2d4f7592010-10-12 23:31:31 -0700593 <intent-filter>
594 <action android:name="android.intent.action.APPWIDGET_PICK" />
595 </intent-filter>
596 </activity>
The Android Open Source Project7aa0e4c2009-03-03 19:32:21 -0800597 </application>
598</manifest>