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