The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 1 | <?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 Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 7 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 9 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 10 | 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 Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 18 | package="com.android.contacts" |
| 19 | android:sharedUserId="android.uid.shared" |
Dianne Hackborn | 15a5ad8 | 2010-06-22 16:09:43 -0700 | [diff] [blame] | 20 | android:sharedUserLabel="@string/sharedUserLabel" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 21 | > |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 22 | |
Jeff Hamilton | e788353 | 2010-02-11 16:25:48 -0600 | [diff] [blame] | 23 | <original-package android:name="com.android.contacts" /> |
| 24 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 25 | <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 Santoro | 0a4d225 | 2011-05-20 11:40:34 -0700 | [diff] [blame] | 28 | <uses-permission android:name="android.permission.READ_PROFILE" /> |
| 29 | <uses-permission android:name="android.permission.WRITE_PROFILE" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 30 | <uses-permission android:name="android.permission.INTERNET" /> |
Martijn Coenen | 8bd4065 | 2011-06-15 15:55:05 +0200 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.NFC" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 32 | <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 Miyakawa | 2991dd9 | 2009-05-19 08:32:17 +0900 | [diff] [blame] | 35 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
Daisuke Miyakawa | 72c5052 | 2009-07-07 15:37:59 -0700 | [diff] [blame] | 36 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Dmitri Plotnikov | daa2d5c | 2010-01-29 17:44:20 -0800 | [diff] [blame] | 37 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
Fred Quintana | 104b792 | 2009-07-22 20:01:15 -0700 | [diff] [blame] | 38 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
Nicolas Catania | 9bcf470 | 2009-11-06 13:19:43 -0800 | [diff] [blame] | 39 | <uses-permission android:name="android.permission.VIBRATE" /> |
Dmitri Plotnikov | 9981172 | 2010-11-01 18:21:22 -0700 | [diff] [blame] | 40 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
Flavio Lerda | 40d92c4 | 2011-07-01 13:47:42 +0100 | [diff] [blame] | 41 | <uses-permission android:name="com.android.voicemail.permission.READ_WRITE_OWN_VOICEMAIL" /> |
| 42 | <uses-permission android:name="com.android.voicemail.permission.READ_WRITE_ALL_VOICEMAIL" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 43 | |
| 44 | <application |
Dmitri Plotnikov | f049ff0 | 2010-11-29 10:15:24 -0800 | [diff] [blame] | 45 | android:name="com.android.contacts.ContactsApplication" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 46 | android:label="@string/contactsList" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 47 | android:icon="@mipmap/ic_launcher_contacts" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 48 | android:process="android.process.acore" |
| 49 | android:taskAffinity="android.task.contacts" |
Daniel Lehmann | 57b5aa1 | 2010-09-23 17:42:23 -0700 | [diff] [blame] | 50 | android:hardwareAccelerated="true" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 51 | > |
| 52 | |
Daniel Lehmann | f1054f1 | 2011-05-05 21:06:42 -0700 | [diff] [blame] | 53 | <!-- A virtual 12 key dialer --> |
Daniel Lehmann | 09fba0a | 2011-05-05 18:25:17 -0700 | [diff] [blame] | 54 | <activity android:name=".activities.DialpadActivity" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 55 | android:launchMode="singleTop" |
| 56 | > |
| 57 | <intent-filter> |
| 58 | <action android:name="com.android.phone.action.TOUCH_DIALER" /> |
| 59 | <category android:name="android.intent.category.DEFAULT" /> |
| 60 | <category android:name="android.intent.category.TAB" /> |
| 61 | </intent-filter> |
| 62 | </activity> |
| 63 | |
Daniel Lehmann | f1054f1 | 2011-05-05 21:06:42 -0700 | [diff] [blame] | 64 | <!-- A list of recent calls --> |
Daniel Lehmann | 09fba0a | 2011-05-05 18:25:17 -0700 | [diff] [blame] | 65 | <activity android:name=".activities.CallLogActivity" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 66 | android:label="@string/recentCallsIconLabel" |
Flavio Lerda | e00060f | 2011-07-04 18:59:55 +0100 | [diff] [blame] | 67 | android:theme="@style/DialtactsTheme" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 68 | > |
| 69 | <intent-filter> |
| 70 | <action android:name="com.android.phone.action.RECENT_CALLS" /> |
| 71 | <category android:name="android.intent.category.DEFAULT" /> |
| 72 | <category android:name="android.intent.category.TAB" /> |
| 73 | </intent-filter> |
| 74 | </activity> |
| 75 | |
Daniel Lehmann | e9b196e | 2010-10-26 12:17:39 -0700 | [diff] [blame] | 76 | <!-- Intercept Dialer Intents for devices without a phone. |
| 77 | This activity should have the same intent filters as the DialtactsActivity, |
| 78 | so that its capturing the same events. Omit android.intent.category.LAUNCHER, because we |
| 79 | don't want this to show up in the Launcher. The priorities of the intent-filters |
| 80 | are set lower, so that the user does not see a disambig dialog --> |
| 81 | <activity |
| 82 | android:name=".activities.NonPhoneActivity" |
| 83 | android:theme="@style/NonPhoneActivityTheme" |
| 84 | > |
| 85 | <intent-filter android:priority="-1"> |
| 86 | <action android:name="android.intent.action.DIAL" /> |
| 87 | <category android:name="android.intent.category.DEFAULT" /> |
| 88 | <category android:name="android.intent.category.BROWSABLE" /> |
| 89 | <data android:mimeType="vnd.android.cursor.item/phone" /> |
| 90 | <data android:mimeType="vnd.android.cursor.item/person" /> |
| 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 | <category android:name="android.intent.category.BROWSABLE" /> |
| 96 | <data android:scheme="voicemail" /> |
| 97 | </intent-filter> |
| 98 | <intent-filter android:priority="-1"> |
| 99 | <action android:name="android.intent.action.DIAL" /> |
| 100 | <category android:name="android.intent.category.DEFAULT" /> |
| 101 | </intent-filter> |
| 102 | <intent-filter android:priority="-1"> |
| 103 | <action android:name="android.intent.action.MAIN" /> |
| 104 | <category android:name="android.intent.category.DEFAULT" /> |
| 105 | <category android:name="android.intent.category.BROWSABLE" /> |
| 106 | </intent-filter> |
| 107 | <intent-filter android:priority="-1"> |
| 108 | <action android:name="android.intent.action.VIEW" /> |
| 109 | <action android:name="android.intent.action.DIAL" /> |
| 110 | <category android:name="android.intent.category.DEFAULT" /> |
| 111 | <category android:name="android.intent.category.BROWSABLE" /> |
| 112 | <data android:scheme="tel" /> |
| 113 | </intent-filter> |
| 114 | <intent-filter android:priority="-1"> |
| 115 | <action android:name="android.intent.action.VIEW" /> |
| 116 | <category android:name="android.intent.category.DEFAULT" /> |
| 117 | <category android:name="android.intent.category.BROWSABLE" /> |
| 118 | <data android:mimeType="vnd.android.cursor.dir/calls" /> |
| 119 | </intent-filter> |
| 120 | <intent-filter android:priority="-1"> |
| 121 | <action android:name="android.intent.action.CALL_BUTTON" /> |
| 122 | <category android:name="android.intent.category.DEFAULT" /> |
| 123 | <category android:name="android.intent.category.BROWSABLE" /> |
| 124 | </intent-filter> |
| 125 | </activity> |
| 126 | |
Daniel Lehmann | 7675e12 | 2010-04-21 17:31:11 -0700 | [diff] [blame] | 127 | <!-- Tab container for all tabs --> |
Daniel Lehmann | 09fba0a | 2011-05-05 18:25:17 -0700 | [diff] [blame] | 128 | <activity android:name=".activities.DialtactsActivity" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 129 | android:label="@string/launcherDialer" |
Nicolas Catania | 177d88f | 2009-09-27 15:15:05 -0700 | [diff] [blame] | 130 | android:theme="@style/DialtactsTheme" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 131 | android:launchMode="singleTask" |
| 132 | android:clearTaskOnLaunch="true" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 133 | android:icon="@mipmap/ic_launcher_phone" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 134 | android:screenOrientation="nosensor" |
Daniel Lehmann | e9b196e | 2010-10-26 12:17:39 -0700 | [diff] [blame] | 135 | android:enabled="@*android:bool/config_voice_capable" |
Katherine Kuan | 9856fce | 2011-06-01 10:24:09 -0700 | [diff] [blame] | 136 | android:taskAffinity="android.task.contacts.phone" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 137 | > |
| 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:mimeType="vnd.android.cursor.item/phone" /> |
| 143 | <data android:mimeType="vnd.android.cursor.item/person" /> |
| 144 | </intent-filter> |
| 145 | <intent-filter> |
| 146 | <action android:name="android.intent.action.DIAL" /> |
| 147 | <category android:name="android.intent.category.DEFAULT" /> |
| 148 | <category android:name="android.intent.category.BROWSABLE" /> |
| 149 | <data android:scheme="voicemail" /> |
| 150 | </intent-filter> |
| 151 | <intent-filter> |
| 152 | <action android:name="android.intent.action.DIAL" /> |
| 153 | <category android:name="android.intent.category.DEFAULT" /> |
| 154 | </intent-filter> |
| 155 | <intent-filter> |
| 156 | <action android:name="android.intent.action.MAIN" /> |
| 157 | <category android:name="android.intent.category.DEFAULT" /> |
| 158 | <category android:name="android.intent.category.LAUNCHER" /> |
| 159 | <category android:name="android.intent.category.BROWSABLE" /> |
| 160 | </intent-filter> |
| 161 | <intent-filter> |
| 162 | <action android:name="android.intent.action.VIEW" /> |
| 163 | <action android:name="android.intent.action.DIAL" /> |
| 164 | <category android:name="android.intent.category.DEFAULT" /> |
| 165 | <category android:name="android.intent.category.BROWSABLE" /> |
| 166 | <data android:scheme="tel" /> |
| 167 | </intent-filter> |
| 168 | <intent-filter> |
| 169 | <action android:name="android.intent.action.VIEW" /> |
| 170 | <category android:name="android.intent.category.DEFAULT" /> |
| 171 | <category android:name="android.intent.category.BROWSABLE" /> |
| 172 | <data android:mimeType="vnd.android.cursor.dir/calls" /> |
| 173 | </intent-filter> |
| 174 | <intent-filter> |
| 175 | <action android:name="android.intent.action.CALL_BUTTON" /> |
| 176 | <category android:name="android.intent.category.DEFAULT" /> |
| 177 | <category android:name="android.intent.category.BROWSABLE" /> |
| 178 | </intent-filter> |
| 179 | </activity> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 180 | |
Katherine Kuan | 9856fce | 2011-06-01 10:24:09 -0700 | [diff] [blame] | 181 | <!-- The main Contacts activity with the contact list, favorites, and groups. --> |
| 182 | <activity android:name=".activities.PeopleActivity" |
| 183 | android:label="@string/people" |
| 184 | android:theme="@style/PeopleTheme" |
Dmitri Plotnikov | fa49a66 | 2011-01-13 11:04:56 -0800 | [diff] [blame] | 185 | android:clearTaskOnLaunch="true" |
| 186 | android:launchMode="singleTop" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 187 | > |
| 188 | <intent-filter> |
| 189 | <action android:name="android.intent.action.MAIN" /> |
| 190 | <category android:name="android.intent.category.DEFAULT" /> |
| 191 | <category android:name="android.intent.category.LAUNCHER" /> |
Dmitri Plotnikov | 032bb36 | 2009-05-06 17:05:39 -0700 | [diff] [blame] | 192 | <category android:name="android.intent.category.BROWSABLE" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 193 | </intent-filter> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 194 | <intent-filter> |
| 195 | <action android:name="com.android.contacts.action.LIST_DEFAULT" /> |
| 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_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_ALL_CONTACTS" /> |
| 208 | <category android:name="android.intent.category.DEFAULT" /> |
| 209 | <category android:name="android.intent.category.TAB" /> |
| 210 | </intent-filter> |
| 211 | |
| 212 | <intent-filter> |
| 213 | <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" /> |
| 214 | <category android:name="android.intent.category.DEFAULT" /> |
| 215 | <category android:name="android.intent.category.TAB" /> |
| 216 | </intent-filter> |
| 217 | |
| 218 | <intent-filter android:label="@string/starredList"> |
| 219 | <action android:name="com.android.contacts.action.LIST_STARRED" /> |
| 220 | <category android:name="android.intent.category.DEFAULT" /> |
| 221 | <category android:name="android.intent.category.TAB" /> |
| 222 | </intent-filter> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 223 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 224 | <intent-filter android:label="@string/frequentList"> |
| 225 | <action android:name="com.android.contacts.action.LIST_FREQUENT" /> |
| 226 | <category android:name="android.intent.category.DEFAULT" /> |
| 227 | <category android:name="android.intent.category.TAB" /> |
| 228 | </intent-filter> |
| 229 | |
| 230 | <intent-filter android:label="@string/strequentList"> |
| 231 | <action android:name="com.android.contacts.action.LIST_STREQUENT" /> |
| 232 | <category android:name="android.intent.category.DEFAULT" /> |
| 233 | <category android:name="android.intent.category.TAB" /> |
| 234 | </intent-filter> |
Dmitri Plotnikov | 27b97bc | 2010-10-07 18:06:09 -0700 | [diff] [blame] | 235 | |
| 236 | <intent-filter> |
| 237 | <action android:name="android.intent.action.SEARCH" /> |
| 238 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | 0edd407 | 2011-01-19 10:10:10 -0800 | [diff] [blame] | 239 | <data android:mimeType="vnd.android.cursor.dir/contact" /> |
Dmitri Plotnikov | 7b8f746 | 2010-11-02 17:25:08 -0700 | [diff] [blame] | 240 | </intent-filter> |
| 241 | |
| 242 | <intent-filter> |
Dmitri Plotnikov | 30b9971 | 2011-01-20 09:29:44 -0800 | [diff] [blame] | 243 | <action android:name="android.intent.action.SEARCH" /> |
| 244 | <category android:name="android.intent.category.DEFAULT" /> |
| 245 | </intent-filter> |
| 246 | |
| 247 | <intent-filter> |
Dmitri Plotnikov | 7b8f746 | 2010-11-02 17:25:08 -0700 | [diff] [blame] | 248 | <action android:name="com.android.contacts.action.FILTER_CONTACTS" /> |
| 249 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | d11bca2 | 2010-12-08 20:15:17 -0800 | [diff] [blame] | 250 | <data android:mimeType="vnd.android.cursor.dir/contact" /> |
Dmitri Plotnikov | 27b97bc | 2010-10-07 18:06:09 -0700 | [diff] [blame] | 251 | </intent-filter> |
| 252 | |
| 253 | <meta-data android:name="android.app.searchable" |
| 254 | android:resource="@xml/searchable" |
| 255 | /> |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 256 | </activity> |
| 257 | |
| 258 | <activity android:name=".activities.ContactSelectionActivity" |
| 259 | android:label="@string/contactsList" |
Dmitri Plotnikov | e1d4c06 | 2010-07-15 16:20:36 -0700 | [diff] [blame] | 260 | android:theme="@style/ContactPickerTheme" |
Dmitri Plotnikov | fa49a66 | 2011-01-13 11:04:56 -0800 | [diff] [blame] | 261 | android:launchMode="singleTop" |
| 262 | android:clearTaskOnLaunch="true" |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 263 | > |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 264 | <intent-filter> |
| 265 | <action android:name="android.intent.action.INSERT_OR_EDIT" /> |
| 266 | <category android:name="android.intent.category.DEFAULT" /> |
| 267 | <data android:mimeType="vnd.android.cursor.item/person" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 268 | <data android:mimeType="vnd.android.cursor.item/contact" /> |
| 269 | <data android:mimeType="vnd.android.cursor.item/raw_contact" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 270 | </intent-filter> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 271 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 272 | <intent-filter> |
| 273 | <action android:name="android.intent.action.PICK" /> |
| 274 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | d11bca2 | 2010-12-08 20:15:17 -0800 | [diff] [blame] | 275 | <data android:mimeType="vnd.android.cursor.dir/contact" /> |
| 276 | <data android:mimeType="vnd.android.cursor.dir/person" /> |
| 277 | <data android:mimeType="vnd.android.cursor.dir/phone_v2" /> |
| 278 | <data android:mimeType="vnd.android.cursor.dir/phone" /> |
| 279 | <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" /> |
| 280 | <data android:mimeType="vnd.android.cursor.dir/postal-address" /> |
Daniel Lehmann | c86ace7 | 2011-03-23 21:04:29 -0700 | [diff] [blame] | 281 | <data android:mimeType="vnd.android.cursor.dir/email_v2" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 282 | </intent-filter> |
| 283 | |
| 284 | <intent-filter> |
| 285 | <action android:name="android.intent.action.GET_CONTENT" /> |
| 286 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | d11bca2 | 2010-12-08 20:15:17 -0800 | [diff] [blame] | 287 | <data android:mimeType="vnd.android.cursor.item/contact" /> |
| 288 | <data android:mimeType="vnd.android.cursor.item/person" /> |
| 289 | <data android:mimeType="vnd.android.cursor.item/phone_v2" /> |
| 290 | <data android:mimeType="vnd.android.cursor.item/phone" /> |
| 291 | <data android:mimeType="vnd.android.cursor.item/postal-address_v2" /> |
| 292 | <data android:mimeType="vnd.android.cursor.item/postal-address" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 293 | </intent-filter> |
The Android Open Source Project | 37a16ac | 2009-03-18 17:39:48 -0700 | [diff] [blame] | 294 | </activity> |
| 295 | |
Dmitri Plotnikov | 27834b2 | 2010-07-01 14:10:08 -0700 | [diff] [blame] | 296 | <!-- Backwards compatibility: somebody may have hard coded this activity name --> |
| 297 | <activity-alias android:name="ContactsListActivity" |
Katherine Kuan | 9856fce | 2011-06-01 10:24:09 -0700 | [diff] [blame] | 298 | android:targetActivity=".activities.PeopleActivity" |
Dmitri Plotnikov | 27834b2 | 2010-07-01 14:10:08 -0700 | [diff] [blame] | 299 | /> |
| 300 | |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 301 | <!-- An activity for joining contacts --> |
Dmitri Plotnikov | d21ddb2 | 2010-11-03 14:25:59 -0700 | [diff] [blame] | 302 | <activity android:name=".activities.JoinContactActivity" |
Daniel Lehmann | 134e53f | 2010-08-25 14:21:51 -0700 | [diff] [blame] | 303 | android:theme="@style/JoinContactActivityTheme" |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 304 | android:clearTaskOnLaunch="true" |
| 305 | > |
| 306 | <intent-filter> |
Dmitri Plotnikov | 501b7ea | 2010-04-07 17:20:49 -0700 | [diff] [blame] | 307 | <action android:name="com.android.contacts.action.JOIN_CONTACT" /> |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 308 | <category android:name="android.intent.category.DEFAULT" /> |
| 309 | </intent-filter> |
| 310 | </activity> |
| 311 | |
Dmitri Plotnikov | c85ad18 | 2010-09-17 18:12:49 -0700 | [diff] [blame] | 312 | <!-- Used to set options --> |
Daniel Lehmann | 1010574 | 2010-07-15 17:35:57 -0700 | [diff] [blame] | 313 | <activity |
Dmitri Plotnikov | c85ad18 | 2010-09-17 18:12:49 -0700 | [diff] [blame] | 314 | android:name=".preference.ContactsPreferenceActivity" |
| 315 | android:label="@string/activity_title_settings" |
Daniel Lehmann | 1010574 | 2010-07-15 17:35:57 -0700 | [diff] [blame] | 316 | android:theme="@style/ContactsPreferencesTheme" /> |
Jeff Sharkey | d5c5b9a | 2009-06-21 19:46:04 -0700 | [diff] [blame] | 317 | |
Katherine Kuan | 495db43 | 2011-07-06 18:58:46 -0700 | [diff] [blame^] | 318 | <!-- Used to filter contacts list by account --> |
| 319 | <activity |
| 320 | android:name=".list.AccountFilterActivity" |
| 321 | android:label="@string/activity_title_contacts_filter" |
| 322 | android:theme="@style/ContactListFilterTheme" /> |
| 323 | |
Dmitri Plotnikov | d6e6b8a | 2010-09-15 16:23:02 -0700 | [diff] [blame] | 324 | <!-- Used to select display and sync groups --> |
| 325 | <activity |
| 326 | android:name=".list.CustomContactListFilterActivity" |
| 327 | android:label="@string/custom_list_filter" |
Katherine Kuan | 495db43 | 2011-07-06 18:58:46 -0700 | [diff] [blame^] | 328 | android:theme="@style/ContactListFilterTheme" /> |
Dmitri Plotnikov | d6e6b8a | 2010-09-15 16:23:02 -0700 | [diff] [blame] | 329 | |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 330 | <activity |
Daniel Lehmann | 72af89f | 2010-10-18 15:15:59 -0700 | [diff] [blame] | 331 | android:name=".activities.ShowOrCreateActivity" |
Jeff Sharkey | cde7389 | 2011-04-07 00:48:02 -0700 | [diff] [blame] | 332 | android:theme="@android:style/Theme.Translucent.NoTitleBar"> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 333 | |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 334 | <intent-filter> |
| 335 | <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" /> |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 336 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 337 | <data android:scheme="mailto" /> |
| 338 | <data android:scheme="tel" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 339 | </intent-filter> |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 340 | </activity> |
| 341 | |
Katherine Kuan | 9add0e5 | 2011-05-10 18:26:15 -0700 | [diff] [blame] | 342 | |
| 343 | <!-- List of groups --> |
| 344 | <activity android:name=".activities.GroupBrowserActivity" |
| 345 | android:label="@string/contactsGroupsLabel" |
Katherine Kuan | 9856fce | 2011-06-01 10:24:09 -0700 | [diff] [blame] | 346 | android:theme="@style/PeopleTheme" |
Katherine Kuan | 9add0e5 | 2011-05-10 18:26:15 -0700 | [diff] [blame] | 347 | android:launchMode="singleTop" |
| 348 | android:clearTaskOnLaunch="true"> |
| 349 | <!-- TODO: Remove this temporary intent action name when the fragmentization |
| 350 | work is done. --> |
| 351 | <intent-filter> |
| 352 | <action android:name="com.android.phone.action.GROUPS_LIST" /> |
| 353 | <category android:name="android.intent.category.DEFAULT" /> |
| 354 | <category android:name="android.intent.category.TAB" /> |
| 355 | </intent-filter> |
| 356 | </activity> |
| 357 | |
Katherine Kuan | fd8cded | 2011-05-11 11:34:56 -0700 | [diff] [blame] | 358 | <!-- Views the details of a single group --> |
| 359 | <activity android:name=".activities.GroupDetailActivity" |
| 360 | android:label="" |
| 361 | android:theme="@style/GroupDetailTheme" /> |
| 362 | |
Katherine Kuan | c6b8afe | 2011-06-22 19:03:50 -0700 | [diff] [blame] | 363 | <!-- Create a new or edit an existing group --> |
| 364 | <activity |
| 365 | android:name=".activities.GroupEditorActivity" |
| 366 | android:theme="@style/ContactEditorActivityTheme" |
| 367 | android:windowSoftInputMode="adjustResize" /> |
| 368 | |
Evan Millar | 0d0ab34 | 2009-09-30 19:03:35 -0700 | [diff] [blame] | 369 | <!-- Used to show QuickContact window over a translucent activity, which is a |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 370 | temporary hack until we add better framework support. --> |
| 371 | <activity |
Jeff Sharkey | cde7389 | 2011-04-07 00:48:02 -0700 | [diff] [blame] | 372 | android:name=".quickcontact.QuickContactWindow" |
| 373 | android:theme="@style/Theme.QuickContact" |
Jeff Sharkey | 735e8b1 | 2009-09-30 14:57:07 -0700 | [diff] [blame] | 374 | android:launchMode="singleTop" |
Jeff Sharkey | 5cbf6f4 | 2009-10-02 14:22:51 -0700 | [diff] [blame] | 375 | android:excludeFromRecents="true" |
Dmitri Plotnikov | ad3bd44 | 2010-03-23 22:49:43 -0700 | [diff] [blame] | 376 | android:taskAffinity="android.task.quickcontact" |
Jeff Sharkey | cde7389 | 2011-04-07 00:48:02 -0700 | [diff] [blame] | 377 | android:windowSoftInputMode="stateUnchanged"> |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 378 | |
| 379 | <intent-filter> |
Evan Millar | 33b0845 | 2009-09-30 21:45:08 -0700 | [diff] [blame] | 380 | <action android:name="com.android.contacts.action.QUICK_CONTACT" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 381 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | d11bca2 | 2010-12-08 20:15:17 -0800 | [diff] [blame] | 382 | <data android:mimeType="vnd.android.cursor.item/contact" /> |
| 383 | <data android:mimeType="vnd.android.cursor.item/person" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 384 | </intent-filter> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 385 | </activity> |
| 386 | |
Daniel Lehmann | af8e386 | 2010-11-19 15:38:44 -0800 | [diff] [blame] | 387 | <!-- Flushes the QuickContact IntentCache --> |
| 388 | <receiver android:name=".quickcontact.PackageIntentReceiver"> |
| 389 | <intent-filter> |
| 390 | <action android:name="android.intent.action.PACKAGE_ADDED" /> |
| 391 | <data android:scheme="package" /> |
| 392 | </intent-filter> |
| 393 | <intent-filter> |
| 394 | <action android:name="android.intent.action.PACKAGE_REPLACED" /> |
| 395 | <data android:scheme="package" /> |
| 396 | </intent-filter> |
| 397 | <intent-filter> |
| 398 | <action android:name="android.intent.action.PACKAGE_REMOVED" /> |
| 399 | <data android:scheme="package" /> |
| 400 | </intent-filter> |
| 401 | <intent-filter> |
| 402 | <action android:name="android.intent.action.PACKAGE_CHANGED" /> |
| 403 | <data android:scheme="package" /> |
| 404 | </intent-filter> |
| 405 | </receiver> |
| 406 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 407 | <activity-alias android:name="ContactShortcut" |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 408 | android:targetActivity=".activities.ContactSelectionActivity" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 409 | android:label="@string/shortcutContact" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 410 | android:icon="@mipmap/ic_launcher_shortcut_contact"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 411 | |
| 412 | <intent-filter> |
| 413 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 414 | <category android:name="android.intent.category.DEFAULT" /> |
| 415 | </intent-filter> |
| 416 | |
| 417 | </activity-alias> |
| 418 | |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 419 | <activity-alias android:name="alias.DialShortcut" |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 420 | android:targetActivity=".activities.ContactSelectionActivity" |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 421 | android:label="@string/shortcutDialContact" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 422 | android:icon="@mipmap/ic_launcher_shortcut_directdial" |
Daniel Lehmann | e9b196e | 2010-10-26 12:17:39 -0700 | [diff] [blame] | 423 | android:enabled="@*android:bool/config_voice_capable"> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 424 | |
| 425 | <intent-filter> |
| 426 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 427 | <category android:name="android.intent.category.DEFAULT" /> |
Bernd Holzhey | a497ce5 | 2010-03-31 10:06:24 +0200 | [diff] [blame] | 428 | <category android:name="android.intent.category.CAR_MODE" /> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 429 | </intent-filter> |
| 430 | |
| 431 | </activity-alias> |
| 432 | |
| 433 | <activity-alias android:name="alias.MessageShortcut" |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 434 | android:targetActivity=".activities.ContactSelectionActivity" |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 435 | android:label="@string/shortcutMessageContact" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 436 | android:icon="@mipmap/ic_launcher_shortcut_directmessage" |
Daniel Lehmann | e9b196e | 2010-10-26 12:17:39 -0700 | [diff] [blame] | 437 | android:enabled="@*android:bool/config_voice_capable"> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 438 | |
| 439 | <intent-filter> |
| 440 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 441 | <category android:name="android.intent.category.DEFAULT" /> |
| 442 | </intent-filter> |
| 443 | |
| 444 | </activity-alias> |
| 445 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 446 | <activity android:name="CallDetailActivity" |
| 447 | android:label="@string/callDetailTitle" |
Daniel Lehmann | 134e53f | 2010-08-25 14:21:51 -0700 | [diff] [blame] | 448 | android:theme="@style/CallDetailActivityTheme" |
Katherine Kuan | 9856fce | 2011-06-01 10:24:09 -0700 | [diff] [blame] | 449 | android:taskAffinity="android.task.contacts.phone" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 450 | > |
| 451 | <intent-filter> |
| 452 | <action android:name="android.intent.action.VIEW" /> |
| 453 | <category android:name="android.intent.category.DEFAULT" /> |
| 454 | <data android:mimeType="vnd.android.cursor.item/calls" /> |
| 455 | </intent-filter> |
| 456 | </activity> |
| 457 | |
| 458 | <!-- Views the details of a single contact --> |
Daniel Lehmann | 4cd9441 | 2010-04-08 16:44:36 -0700 | [diff] [blame] | 459 | <activity android:name=".activities.ContactDetailActivity" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 460 | android:label="@string/viewContactTitle" |
Daniel Lehmann | 134e53f | 2010-08-25 14:21:51 -0700 | [diff] [blame] | 461 | android:theme="@style/ContactDetailActivityTheme"> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 462 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 463 | <intent-filter android:label="@string/viewContactDesription"> |
| 464 | <action android:name="android.intent.action.VIEW" /> |
| 465 | <category android:name="android.intent.category.DEFAULT" /> |
Daniel Lehmann | c90c705 | 2011-03-16 18:42:34 -0700 | [diff] [blame] | 466 | <data android:mimeType="vnd.android.cursor.dir/person" /> |
| 467 | <data android:mimeType="vnd.android.cursor.dir/contact" /> |
| 468 | <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 Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 471 | </intent-filter> |
| 472 | </activity> |
| 473 | |
Daniel Lehmann | f319cf8 | 2010-06-25 17:41:13 -0700 | [diff] [blame] | 474 | <!-- Create a new or edit an existing contact --> |
Jeff Sharkey | 14f61ab | 2009-08-05 21:02:37 -0700 | [diff] [blame] | 475 | <activity |
Daniel Lehmann | cdef2b6 | 2010-06-06 18:25:49 -0700 | [diff] [blame] | 476 | android:name=".activities.ContactEditorActivity" |
Daniel Lehmann | 134e53f | 2010-08-25 14:21:51 -0700 | [diff] [blame] | 477 | android:theme="@style/ContactEditorActivityTheme" |
Daniel Lehmann | 3a12077 | 2010-06-21 16:21:35 -0700 | [diff] [blame] | 478 | android:windowSoftInputMode="adjustResize"> |
Jeff Sharkey | 14f61ab | 2009-08-05 21:02:37 -0700 | [diff] [blame] | 479 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 480 | <intent-filter android:label="@string/editContactDescription"> |
| 481 | <action android:name="android.intent.action.EDIT" /> |
| 482 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | d11bca2 | 2010-12-08 20:15:17 -0800 | [diff] [blame] | 483 | <data android:mimeType="vnd.android.cursor.item/person" /> |
| 484 | <data android:mimeType="vnd.android.cursor.item/contact" /> |
| 485 | <data android:mimeType="vnd.android.cursor.item/raw_contact" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 486 | </intent-filter> |
| 487 | <intent-filter android:label="@string/insertContactDescription"> |
| 488 | <action android:name="android.intent.action.INSERT" /> |
| 489 | <category android:name="android.intent.category.DEFAULT" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 490 | <data android:mimeType="vnd.android.cursor.dir/person" /> |
| 491 | <data android:mimeType="vnd.android.cursor.dir/contact" /> |
| 492 | <data android:mimeType="vnd.android.cursor.dir/raw_contact" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 493 | </intent-filter> |
Daniel Lehmann | cdef2b6 | 2010-06-06 18:25:49 -0700 | [diff] [blame] | 494 | </activity> |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 495 | |
Dmitri Plotnikov | 43fd1e8 | 2011-01-09 11:29:39 -0800 | [diff] [blame] | 496 | <activity android:name=".test.FragmentTestActivity"> |
| 497 | <intent-filter> |
| 498 | <category android:name="android.intent.category.TEST" /> |
| 499 | </intent-filter> |
| 500 | </activity> |
| 501 | |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 502 | <!-- Stub service used to keep our process alive long enough for |
| 503 | background threads to finish their operations. --> |
| 504 | <service |
| 505 | android:name=".util.EmptyService" |
| 506 | android:exported="false" /> |
| 507 | |
Daniel Lehmann | 173ffe1 | 2010-06-14 18:19:10 -0700 | [diff] [blame] | 508 | <!-- Service to save a contact --> |
| 509 | <service |
Dmitri Plotnikov | 72f2b7a | 2010-12-03 18:46:31 -0800 | [diff] [blame] | 510 | android:name=".ContactSaveService" |
Daniel Lehmann | 173ffe1 | 2010-06-14 18:19:10 -0700 | [diff] [blame] | 511 | android:exported="false" /> |
| 512 | |
Dmitri Plotnikov | ef03872 | 2009-06-24 18:51:47 -0700 | [diff] [blame] | 513 | <!-- Views the details of a single contact --> |
| 514 | <activity android:name="ContactOptionsActivity" |
| 515 | android:label="@string/contactOptionsTitle" |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 516 | > |
Dmitri Plotnikov | ef03872 | 2009-06-24 18:51:47 -0700 | [diff] [blame] | 517 | <intent-filter> |
| 518 | <action android:name="android.intent.action.EDIT" /> |
| 519 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 520 | </intent-filter> |
| 521 | </activity> |
| 522 | |
| 523 | <!-- Attaches a photo to a contact. Started from external applications --> |
Dmitri Plotnikov | 19d51ac | 2011-01-04 14:30:24 -0800 | [diff] [blame] | 524 | <activity android:name=".activities.AttachPhotoActivity" |
Daniel Lehmann | 9442ef4 | 2010-11-09 17:35:53 -0800 | [diff] [blame] | 525 | android:label="@string/attach_photo_dialog_title" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 526 | android:taskAffinity=""> |
| 527 | <intent-filter> |
| 528 | <action android:name="android.intent.action.ATTACH_DATA" /> |
| 529 | <data android:mimeType="image/*" /> |
| 530 | <category android:name="android.intent.category.DEFAULT" /> |
| 531 | </intent-filter> |
| 532 | /> |
Neel Parekh | be406ff | 2009-09-16 15:31:22 -0700 | [diff] [blame] | 533 | </activity> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 534 | |
Dmitri Plotnikov | 884e393 | 2010-05-13 19:13:51 -0700 | [diff] [blame] | 535 | <!-- Interstitial activity that shows a phone disambig dialog --> |
| 536 | <activity android:name="CallContactActivity" |
| 537 | android:theme="@android:style/Theme.Translucent"> |
| 538 | </activity> |
| 539 | |
Katherine Kuan | 9856fce | 2011-06-01 10:24:09 -0700 | [diff] [blame] | 540 | <!-- Makes .PeopleActivity the search target for any activity in Contacts --> |
Jeff Sharkey | 6831cd9 | 2010-02-28 19:56:58 -0800 | [diff] [blame] | 541 | <meta-data |
| 542 | android:name="android.app.default_searchable" |
Katherine Kuan | 9856fce | 2011-06-01 10:24:09 -0700 | [diff] [blame] | 543 | android:value=".activities.PeopleActivity" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 544 | |
| 545 | |
| 546 | <!-- LIVE FOLDERS --> |
| 547 | <activity |
| 548 | android:name=".ContactsLiveFolders$AllContacts" |
| 549 | android:label="@string/liveFolderAll" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 550 | android:icon="@mipmap/ic_launcher_folder_live_contacts"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 551 | <intent-filter> |
| 552 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 553 | <category android:name="android.intent.category.DEFAULT" /> |
| 554 | </intent-filter> |
| 555 | </activity> |
| 556 | |
| 557 | <activity |
| 558 | android:name=".ContactsLiveFolders$StarredContacts" |
| 559 | android:label="@string/liveFolderFavorites" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 560 | android:icon="@mipmap/ic_launcher_folder_live_contacts_starred"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 561 | <intent-filter> |
| 562 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 563 | <category android:name="android.intent.category.DEFAULT" /> |
| 564 | </intent-filter> |
| 565 | </activity> |
| 566 | |
| 567 | <activity |
| 568 | android:name=".ContactsLiveFolders$PhoneContacts" |
| 569 | android:label="@string/liveFolderPhone" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 570 | android:icon="@mipmap/ic_launcher_folder_live_contacts_phone"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 571 | <intent-filter> |
| 572 | <action android:name="android.intent.action.CREATE_LIVE_FOLDER" /> |
| 573 | <category android:name="android.intent.category.DEFAULT" /> |
| 574 | </intent-filter> |
| 575 | </activity> |
| 576 | |
Daisuke Miyakawa | 1b918e5 | 2010-06-07 15:48:41 -0700 | [diff] [blame] | 577 | <!-- vCard related --> |
| 578 | <activity android:name=".vcard.ImportVCardActivity" |
Daisuke Miyakawa | 4baff1e | 2011-04-07 14:28:37 -0700 | [diff] [blame] | 579 | android:configChanges="orientation|screenSize|keyboardHidden" |
Daisuke Miyakawa | 6448da7 | 2010-04-02 12:06:44 +0900 | [diff] [blame] | 580 | android:theme="@style/BackgroundOnly"> |
| 581 | <intent-filter> |
Lixin Yue | 24fc763 | 2009-12-04 17:03:00 +0800 | [diff] [blame] | 582 | <action android:name="android.intent.action.VIEW" /> |
Attila Bodis | 1261e13 | 2010-03-18 22:06:37 -0700 | [diff] [blame] | 583 | <data android:mimeType="text/directory" /> |
Daisuke Miyakawa | 92ba98a | 2010-06-22 09:12:19 +0900 | [diff] [blame] | 584 | <data android:mimeType="text/vcard" /> |
Lixin Yue | 24fc763 | 2009-12-04 17:03:00 +0800 | [diff] [blame] | 585 | <data android:mimeType="text/x-vcard" /> |
| 586 | <category android:name="android.intent.category.DEFAULT" /> |
| 587 | </intent-filter> |
| 588 | </activity> |
| 589 | |
Daisuke Miyakawa | ab59660 | 2010-11-18 17:28:02 -0800 | [diff] [blame] | 590 | <activity android:name=".vcard.CancelActivity" |
Daisuke Miyakawa | 18b5190 | 2010-08-19 14:13:38 -0700 | [diff] [blame] | 591 | android:theme="@style/BackgroundOnly" /> |
| 592 | |
Daisuke Miyakawa | 1b918e5 | 2010-06-07 15:48:41 -0700 | [diff] [blame] | 593 | <activity android:name=".vcard.SelectAccountActivity" |
Daisuke Miyakawa | 6d2f27f | 2010-04-21 16:11:38 +0900 | [diff] [blame] | 594 | android:theme="@style/BackgroundOnly" /> |
| 595 | |
Daisuke Miyakawa | 1b918e5 | 2010-06-07 15:48:41 -0700 | [diff] [blame] | 596 | <activity android:name=".vcard.ExportVCardActivity" |
Daisuke Miyakawa | 0bec3b9 | 2009-09-25 13:33:27 -0700 | [diff] [blame] | 597 | android:theme="@style/BackgroundOnly" /> |
Dmitri Plotnikov | e124722 | 2010-06-02 18:14:21 -0700 | [diff] [blame] | 598 | |
Daisuke Miyakawa | d8fb81a | 2010-06-08 17:44:22 -0700 | [diff] [blame] | 599 | <service |
| 600 | android:name=".vcard.VCardService" |
| 601 | android:exported="false" /> |
| 602 | |
Dmitri Plotnikov | e124722 | 2010-06-02 18:14:21 -0700 | [diff] [blame] | 603 | <!-- Pinned header list demo --> |
| 604 | <activity android:name=".widget.PinnedHeaderListDemoActivity"> |
| 605 | <intent-filter> |
| 606 | <action android:name="android.intent.action.MAIN" /> |
| 607 | <category android:name="android.intent.category.DEFAULT" /> |
| 608 | </intent-filter> |
| 609 | </activity> |
Daniel Lehmann | 2d4f759 | 2010-10-12 23:31:31 -0700 | [diff] [blame] | 610 | |
| 611 | <!-- The widget that shows details and the social stream of a contact --> |
Daniel Lehmann | b93a26c | 2010-10-18 14:07:05 -0700 | [diff] [blame] | 612 | <receiver android:name=".socialwidget.SocialWidgetProvider" |
Daniel Lehmann | b0ab5d7 | 2010-11-03 16:21:22 -0700 | [diff] [blame] | 613 | android:label="@string/social_widget_label" > |
Daniel Lehmann | 2d4f759 | 2010-10-12 23:31:31 -0700 | [diff] [blame] | 614 | <intent-filter> |
| 615 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
| 616 | </intent-filter> |
| 617 | <meta-data android:name="android.appwidget.provider" |
Daniel Lehmann | b93a26c | 2010-10-18 14:07:05 -0700 | [diff] [blame] | 618 | android:resource="@xml/social_widget_info" /> |
Daniel Lehmann | 2d4f759 | 2010-10-12 23:31:31 -0700 | [diff] [blame] | 619 | </receiver> |
| 620 | |
Flavio Lerda | 87bd536 | 2011-06-30 12:20:43 +0100 | [diff] [blame] | 621 | <receiver android:name=".calllog.NewVoicemailReceiver"> |
| 622 | <intent-filter> |
| 623 | <action android:name="android.intent.action.NEW_VOICEMAIL" /> |
| 624 | <data |
| 625 | android:scheme="content" |
| 626 | android:host="com.android.voicemail" |
| 627 | /> |
| 628 | </intent-filter> |
| 629 | </receiver> |
| 630 | |
Daniel Lehmann | 2d4f759 | 2010-10-12 23:31:31 -0700 | [diff] [blame] | 631 | <activity |
Daniel Lehmann | b93a26c | 2010-10-18 14:07:05 -0700 | [diff] [blame] | 632 | android:name=".socialwidget.SocialWidgetConfigureActivity" |
Daniel Lehmann | b0ab5d7 | 2010-11-03 16:21:22 -0700 | [diff] [blame] | 633 | android:theme="@android:style/Theme.Translucent.NoTitleBar" > |
Daniel Lehmann | 2d4f759 | 2010-10-12 23:31:31 -0700 | [diff] [blame] | 634 | <intent-filter> |
| 635 | <action android:name="android.intent.action.APPWIDGET_PICK" /> |
| 636 | </intent-filter> |
| 637 | </activity> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 638 | </application> |
| 639 | </manifest> |