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