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" |
Dianne Hackborn | 4a3e980 | 2011-08-05 11:21:03 -0700 | [diff] [blame] | 19 | android:sharedUserId="android.uid.shared"> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 20 | |
Jeff Hamilton | e788353 | 2010-02-11 16:25:48 -0600 | [diff] [blame] | 21 | <original-package android:name="com.android.contacts" /> |
| 22 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 23 | <uses-permission android:name="android.permission.CALL_PRIVILEGED" /> |
| 24 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 25 | <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
Dianne Hackborn | 4a3e980 | 2011-08-05 11:21:03 -0700 | [diff] [blame] | 26 | <uses-permission android:name="android.permission.GET_ACCOUNTS" /> |
| 27 | <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> |
| 28 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> |
Dave Santoro | 0a4d225 | 2011-05-20 11:40:34 -0700 | [diff] [blame] | 29 | <uses-permission android:name="android.permission.READ_PROFILE" /> |
| 30 | <uses-permission android:name="android.permission.WRITE_PROFILE" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 31 | <uses-permission android:name="android.permission.INTERNET" /> |
Martijn Coenen | 8bd4065 | 2011-06-15 15:55:05 +0200 | [diff] [blame] | 32 | <uses-permission android:name="android.permission.NFC" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 33 | <uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
Hugo Hudson | b002f51 | 2011-07-15 17:41:12 +0100 | [diff] [blame] | 34 | <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 35 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
| 36 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH.mail" /> |
Daisuke Miyakawa | 2991dd9 | 2009-05-19 08:32:17 +0900 | [diff] [blame] | 37 | <uses-permission android:name="android.permission.WAKE_LOCK" /> |
Daisuke Miyakawa | 72c5052 | 2009-07-07 15:37:59 -0700 | [diff] [blame] | 38 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
Dmitri Plotnikov | daa2d5c | 2010-01-29 17:44:20 -0800 | [diff] [blame] | 39 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
Fred Quintana | 104b792 | 2009-07-22 20:01:15 -0700 | [diff] [blame] | 40 | <uses-permission android:name="android.permission.USE_CREDENTIALS" /> |
Nicolas Catania | 9bcf470 | 2009-11-06 13:19:43 -0800 | [diff] [blame] | 41 | <uses-permission android:name="android.permission.VIBRATE" /> |
Dmitri Plotnikov | 9981172 | 2010-11-01 18:21:22 -0700 | [diff] [blame] | 42 | <uses-permission android:name="android.permission.READ_SYNC_SETTINGS" /> |
Debashish Chatterjee | 37323c2 | 2011-08-03 13:22:01 +0100 | [diff] [blame] | 43 | <uses-permission android:name="com.android.voicemail.permission.ADD_VOICEMAIL" /> |
Flavio Lerda | 40d92c4 | 2011-07-01 13:47:42 +0100 | [diff] [blame] | 44 | <uses-permission android:name="com.android.voicemail.permission.READ_WRITE_ALL_VOICEMAIL" /> |
Doug Zongker | 854d326 | 2011-07-19 13:11:58 -0700 | [diff] [blame] | 45 | <!-- allow broadcasting secret code intents that reboot the phone --> |
| 46 | <uses-permission android:name="android.permission.REBOOT" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 47 | |
| 48 | <application |
Dmitri Plotnikov | f049ff0 | 2010-11-29 10:15:24 -0800 | [diff] [blame] | 49 | android:name="com.android.contacts.ContactsApplication" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 50 | android:label="@string/contactsList" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 51 | android:icon="@mipmap/ic_launcher_contacts" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 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 list of recent calls --> |
Daniel Lehmann | 09fba0a | 2011-05-05 18:25:17 -0700 | [diff] [blame] | 57 | <activity android:name=".activities.CallLogActivity" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 58 | android:label="@string/recentCallsIconLabel" |
Flavio Lerda | e00060f | 2011-07-04 18:59:55 +0100 | [diff] [blame] | 59 | android:theme="@style/DialtactsTheme" |
Adam Powell | 8408060 | 2011-08-02 16:51:29 -0700 | [diff] [blame] | 60 | android:uiOptions="splitActionBarWhenNarrow" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 61 | > |
| 62 | <intent-filter> |
| 63 | <action android:name="com.android.phone.action.RECENT_CALLS" /> |
| 64 | <category android:name="android.intent.category.DEFAULT" /> |
| 65 | <category android:name="android.intent.category.TAB" /> |
| 66 | </intent-filter> |
| 67 | </activity> |
| 68 | |
Daniel Lehmann | e9b196e | 2010-10-26 12:17:39 -0700 | [diff] [blame] | 69 | <!-- Intercept Dialer Intents for devices without a phone. |
| 70 | This activity should have the same intent filters as the DialtactsActivity, |
| 71 | so that its capturing the same events. Omit android.intent.category.LAUNCHER, because we |
| 72 | don't want this to show up in the Launcher. The priorities of the intent-filters |
| 73 | are set lower, so that the user does not see a disambig dialog --> |
| 74 | <activity |
| 75 | android:name=".activities.NonPhoneActivity" |
| 76 | android:theme="@style/NonPhoneActivityTheme" |
| 77 | > |
| 78 | <intent-filter android:priority="-1"> |
| 79 | <action android:name="android.intent.action.DIAL" /> |
| 80 | <category android:name="android.intent.category.DEFAULT" /> |
| 81 | <category android:name="android.intent.category.BROWSABLE" /> |
| 82 | <data android:mimeType="vnd.android.cursor.item/phone" /> |
| 83 | <data android:mimeType="vnd.android.cursor.item/person" /> |
| 84 | </intent-filter> |
| 85 | <intent-filter android:priority="-1"> |
| 86 | <action android:name="android.intent.action.DIAL" /> |
| 87 | <category android:name="android.intent.category.DEFAULT" /> |
| 88 | <category android:name="android.intent.category.BROWSABLE" /> |
| 89 | <data android:scheme="voicemail" /> |
| 90 | </intent-filter> |
| 91 | <intent-filter android:priority="-1"> |
| 92 | <action android:name="android.intent.action.DIAL" /> |
| 93 | <category android:name="android.intent.category.DEFAULT" /> |
| 94 | </intent-filter> |
| 95 | <intent-filter android:priority="-1"> |
| 96 | <action android:name="android.intent.action.MAIN" /> |
| 97 | <category android:name="android.intent.category.DEFAULT" /> |
| 98 | <category android:name="android.intent.category.BROWSABLE" /> |
| 99 | </intent-filter> |
| 100 | <intent-filter android:priority="-1"> |
| 101 | <action android:name="android.intent.action.VIEW" /> |
| 102 | <action android:name="android.intent.action.DIAL" /> |
| 103 | <category android:name="android.intent.category.DEFAULT" /> |
| 104 | <category android:name="android.intent.category.BROWSABLE" /> |
| 105 | <data android:scheme="tel" /> |
| 106 | </intent-filter> |
| 107 | <intent-filter android:priority="-1"> |
| 108 | <action android:name="android.intent.action.VIEW" /> |
| 109 | <category android:name="android.intent.category.DEFAULT" /> |
| 110 | <category android:name="android.intent.category.BROWSABLE" /> |
| 111 | <data android:mimeType="vnd.android.cursor.dir/calls" /> |
| 112 | </intent-filter> |
| 113 | <intent-filter android:priority="-1"> |
| 114 | <action android:name="android.intent.action.CALL_BUTTON" /> |
| 115 | <category android:name="android.intent.category.DEFAULT" /> |
| 116 | <category android:name="android.intent.category.BROWSABLE" /> |
| 117 | </intent-filter> |
| 118 | </activity> |
| 119 | |
Daisuke Miyakawa | de15823 | 2011-08-15 12:26:55 -0700 | [diff] [blame] | 120 | <!-- The entrance point for Phone UI. |
| 121 | stateAlwaysHidden is set to suppress keyboard show up on |
| 122 | dialpad screen. --> |
Daniel Lehmann | 09fba0a | 2011-05-05 18:25:17 -0700 | [diff] [blame] | 123 | <activity android:name=".activities.DialtactsActivity" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 124 | android:label="@string/launcherDialer" |
Nicolas Catania | 177d88f | 2009-09-27 15:15:05 -0700 | [diff] [blame] | 125 | android:theme="@style/DialtactsTheme" |
Adam Powell | 8408060 | 2011-08-02 16:51:29 -0700 | [diff] [blame] | 126 | android:uiOptions="splitActionBarWhenNarrow" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 127 | android:launchMode="singleTask" |
| 128 | android:clearTaskOnLaunch="true" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 129 | android:icon="@mipmap/ic_launcher_phone" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 130 | android:screenOrientation="nosensor" |
Daniel Lehmann | e9b196e | 2010-10-26 12:17:39 -0700 | [diff] [blame] | 131 | android:enabled="@*android:bool/config_voice_capable" |
Katherine Kuan | 9856fce | 2011-06-01 10:24:09 -0700 | [diff] [blame] | 132 | android:taskAffinity="android.task.contacts.phone" |
Daisuke Miyakawa | de15823 | 2011-08-15 12:26:55 -0700 | [diff] [blame] | 133 | android:windowSoftInputMode="stateAlwaysHidden"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 134 | <intent-filter> |
| 135 | <action android:name="android.intent.action.DIAL" /> |
| 136 | <category android:name="android.intent.category.DEFAULT" /> |
| 137 | <category android:name="android.intent.category.BROWSABLE" /> |
| 138 | <data android:mimeType="vnd.android.cursor.item/phone" /> |
| 139 | <data android:mimeType="vnd.android.cursor.item/person" /> |
| 140 | </intent-filter> |
| 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:scheme="voicemail" /> |
| 146 | </intent-filter> |
| 147 | <intent-filter> |
| 148 | <action android:name="android.intent.action.DIAL" /> |
| 149 | <category android:name="android.intent.category.DEFAULT" /> |
| 150 | </intent-filter> |
| 151 | <intent-filter> |
| 152 | <action android:name="android.intent.action.MAIN" /> |
| 153 | <category android:name="android.intent.category.DEFAULT" /> |
| 154 | <category android:name="android.intent.category.LAUNCHER" /> |
| 155 | <category android:name="android.intent.category.BROWSABLE" /> |
| 156 | </intent-filter> |
| 157 | <intent-filter> |
| 158 | <action android:name="android.intent.action.VIEW" /> |
| 159 | <action android:name="android.intent.action.DIAL" /> |
| 160 | <category android:name="android.intent.category.DEFAULT" /> |
| 161 | <category android:name="android.intent.category.BROWSABLE" /> |
| 162 | <data android:scheme="tel" /> |
| 163 | </intent-filter> |
| 164 | <intent-filter> |
| 165 | <action android:name="android.intent.action.VIEW" /> |
| 166 | <category android:name="android.intent.category.DEFAULT" /> |
| 167 | <category android:name="android.intent.category.BROWSABLE" /> |
| 168 | <data android:mimeType="vnd.android.cursor.dir/calls" /> |
| 169 | </intent-filter> |
| 170 | <intent-filter> |
| 171 | <action android:name="android.intent.action.CALL_BUTTON" /> |
| 172 | <category android:name="android.intent.category.DEFAULT" /> |
| 173 | <category android:name="android.intent.category.BROWSABLE" /> |
| 174 | </intent-filter> |
Daisuke Miyakawa | f4fbfdd | 2011-08-15 10:26:07 -0700 | [diff] [blame] | 175 | <!-- This was never intended to be public, but is here for backward |
| 176 | compatibility. Use Intent.ACTION_DIAL instead. --> |
| 177 | <intent-filter> |
| 178 | <action android:name="com.android.phone.action.TOUCH_DIALER" /> |
| 179 | <category android:name="android.intent.category.DEFAULT" /> |
| 180 | <category android:name="android.intent.category.TAB" /> |
| 181 | </intent-filter> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 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" |
Adam Powell | 8408060 | 2011-08-02 16:51:29 -0700 | [diff] [blame] | 188 | android:uiOptions="splitActionBarWhenNarrow" |
Dmitri Plotnikov | fa49a66 | 2011-01-13 11:04:56 -0800 | [diff] [blame] | 189 | android:clearTaskOnLaunch="true" |
| 190 | android:launchMode="singleTop" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 191 | > |
| 192 | <intent-filter> |
| 193 | <action android:name="android.intent.action.MAIN" /> |
| 194 | <category android:name="android.intent.category.DEFAULT" /> |
| 195 | <category android:name="android.intent.category.LAUNCHER" /> |
Dmitri Plotnikov | 032bb36 | 2009-05-06 17:05:39 -0700 | [diff] [blame] | 196 | <category android:name="android.intent.category.BROWSABLE" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 197 | </intent-filter> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 198 | <intent-filter> |
| 199 | <action android:name="com.android.contacts.action.LIST_DEFAULT" /> |
| 200 | <category android:name="android.intent.category.DEFAULT" /> |
| 201 | <category android:name="android.intent.category.TAB" /> |
| 202 | </intent-filter> |
| 203 | |
| 204 | <intent-filter> |
| 205 | <action android:name="com.android.contacts.action.LIST_CONTACTS" /> |
| 206 | <category android:name="android.intent.category.DEFAULT" /> |
| 207 | <category android:name="android.intent.category.TAB" /> |
| 208 | </intent-filter> |
| 209 | |
| 210 | <intent-filter> |
| 211 | <action android:name="com.android.contacts.action.LIST_ALL_CONTACTS" /> |
| 212 | <category android:name="android.intent.category.DEFAULT" /> |
| 213 | <category android:name="android.intent.category.TAB" /> |
| 214 | </intent-filter> |
| 215 | |
| 216 | <intent-filter> |
| 217 | <action android:name="com.android.contacts.action.LIST_CONTACTS_WITH_PHONES" /> |
| 218 | <category android:name="android.intent.category.DEFAULT" /> |
| 219 | <category android:name="android.intent.category.TAB" /> |
| 220 | </intent-filter> |
| 221 | |
| 222 | <intent-filter android:label="@string/starredList"> |
| 223 | <action android:name="com.android.contacts.action.LIST_STARRED" /> |
| 224 | <category android:name="android.intent.category.DEFAULT" /> |
| 225 | <category android:name="android.intent.category.TAB" /> |
| 226 | </intent-filter> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 227 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 228 | <intent-filter android:label="@string/frequentList"> |
| 229 | <action android:name="com.android.contacts.action.LIST_FREQUENT" /> |
| 230 | <category android:name="android.intent.category.DEFAULT" /> |
| 231 | <category android:name="android.intent.category.TAB" /> |
| 232 | </intent-filter> |
| 233 | |
| 234 | <intent-filter android:label="@string/strequentList"> |
| 235 | <action android:name="com.android.contacts.action.LIST_STREQUENT" /> |
| 236 | <category android:name="android.intent.category.DEFAULT" /> |
| 237 | <category android:name="android.intent.category.TAB" /> |
| 238 | </intent-filter> |
Dmitri Plotnikov | 27b97bc | 2010-10-07 18:06:09 -0700 | [diff] [blame] | 239 | |
| 240 | <intent-filter> |
| 241 | <action android:name="android.intent.action.SEARCH" /> |
| 242 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | 0edd407 | 2011-01-19 10:10:10 -0800 | [diff] [blame] | 243 | <data android:mimeType="vnd.android.cursor.dir/contact" /> |
Dmitri Plotnikov | 7b8f746 | 2010-11-02 17:25:08 -0700 | [diff] [blame] | 244 | </intent-filter> |
| 245 | |
| 246 | <intent-filter> |
Dmitri Plotnikov | 30b9971 | 2011-01-20 09:29:44 -0800 | [diff] [blame] | 247 | <action android:name="android.intent.action.SEARCH" /> |
| 248 | <category android:name="android.intent.category.DEFAULT" /> |
| 249 | </intent-filter> |
| 250 | |
| 251 | <intent-filter> |
Dmitri Plotnikov | 7b8f746 | 2010-11-02 17:25:08 -0700 | [diff] [blame] | 252 | <action android:name="com.android.contacts.action.FILTER_CONTACTS" /> |
| 253 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | d11bca2 | 2010-12-08 20:15:17 -0800 | [diff] [blame] | 254 | <data android:mimeType="vnd.android.cursor.dir/contact" /> |
Dmitri Plotnikov | 27b97bc | 2010-10-07 18:06:09 -0700 | [diff] [blame] | 255 | </intent-filter> |
| 256 | |
Daisuke Miyakawa | f0c4681 | 2011-08-23 15:58:21 -0700 | [diff] [blame^] | 257 | <intent-filter> |
| 258 | <action android:name="android.intent.action.VIEW" /> |
| 259 | <category android:name="android.intent.category.DEFAULT" /> |
| 260 | <data android:mimeType="vnd.android.cursor.dir/person" /> |
| 261 | <data android:mimeType="vnd.android.cursor.dir/contact" /> |
| 262 | </intent-filter> |
| 263 | |
Dmitri Plotnikov | 27b97bc | 2010-10-07 18:06:09 -0700 | [diff] [blame] | 264 | <meta-data android:name="android.app.searchable" |
| 265 | android:resource="@xml/searchable" |
| 266 | /> |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 267 | </activity> |
Doug Zongker | 854d326 | 2011-07-19 13:11:58 -0700 | [diff] [blame] | 268 | |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 269 | <activity android:name=".activities.ContactSelectionActivity" |
| 270 | android:label="@string/contactsList" |
Dmitri Plotnikov | e1d4c06 | 2010-07-15 16:20:36 -0700 | [diff] [blame] | 271 | android:theme="@style/ContactPickerTheme" |
Dmitri Plotnikov | fa49a66 | 2011-01-13 11:04:56 -0800 | [diff] [blame] | 272 | android:launchMode="singleTop" |
| 273 | android:clearTaskOnLaunch="true" |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -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.INSERT_OR_EDIT" /> |
| 277 | <category android:name="android.intent.category.DEFAULT" /> |
| 278 | <data android:mimeType="vnd.android.cursor.item/person" /> |
Jeff Sharkey | d9798ae | 2009-08-24 20:46:23 -0700 | [diff] [blame] | 279 | <data android:mimeType="vnd.android.cursor.item/contact" /> |
| 280 | <data android:mimeType="vnd.android.cursor.item/raw_contact" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 281 | </intent-filter> |
Jeff Sharkey | 26c7e73 | 2009-04-01 17:30:46 -0700 | [diff] [blame] | 282 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 283 | <intent-filter> |
| 284 | <action android:name="android.intent.action.PICK" /> |
| 285 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | d11bca2 | 2010-12-08 20:15:17 -0800 | [diff] [blame] | 286 | <data android:mimeType="vnd.android.cursor.dir/contact" /> |
| 287 | <data android:mimeType="vnd.android.cursor.dir/person" /> |
| 288 | <data android:mimeType="vnd.android.cursor.dir/phone_v2" /> |
| 289 | <data android:mimeType="vnd.android.cursor.dir/phone" /> |
| 290 | <data android:mimeType="vnd.android.cursor.dir/postal-address_v2" /> |
| 291 | <data android:mimeType="vnd.android.cursor.dir/postal-address" /> |
Daniel Lehmann | c86ace7 | 2011-03-23 21:04:29 -0700 | [diff] [blame] | 292 | <data android:mimeType="vnd.android.cursor.dir/email_v2" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 293 | </intent-filter> |
| 294 | |
| 295 | <intent-filter> |
| 296 | <action android:name="android.intent.action.GET_CONTENT" /> |
| 297 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | d11bca2 | 2010-12-08 20:15:17 -0800 | [diff] [blame] | 298 | <data android:mimeType="vnd.android.cursor.item/contact" /> |
| 299 | <data android:mimeType="vnd.android.cursor.item/person" /> |
| 300 | <data android:mimeType="vnd.android.cursor.item/phone_v2" /> |
| 301 | <data android:mimeType="vnd.android.cursor.item/phone" /> |
| 302 | <data android:mimeType="vnd.android.cursor.item/postal-address_v2" /> |
| 303 | <data android:mimeType="vnd.android.cursor.item/postal-address" /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 304 | </intent-filter> |
The Android Open Source Project | 37a16ac | 2009-03-18 17:39:48 -0700 | [diff] [blame] | 305 | </activity> |
| 306 | |
Dmitri Plotnikov | 27834b2 | 2010-07-01 14:10:08 -0700 | [diff] [blame] | 307 | <!-- Backwards compatibility: somebody may have hard coded this activity name --> |
| 308 | <activity-alias android:name="ContactsListActivity" |
Katherine Kuan | 9856fce | 2011-06-01 10:24:09 -0700 | [diff] [blame] | 309 | android:targetActivity=".activities.PeopleActivity" |
Dmitri Plotnikov | 27834b2 | 2010-07-01 14:10:08 -0700 | [diff] [blame] | 310 | /> |
| 311 | |
Daniel Lehmann | e9b9461 | 2011-07-11 11:44:56 -0700 | [diff] [blame] | 312 | <!-- Backwards compatibility: "Contacts" from Honeycomb --> |
| 313 | <activity-alias android:name=".activities.ContactsFrontDoor" |
| 314 | android:targetActivity=".activities.PeopleActivity" |
| 315 | android:exported="true" |
| 316 | /> |
| 317 | |
| 318 | <!-- Backwards compatibility: "Contacts" from Gingerbread and earlier --> |
| 319 | <activity-alias android:name="DialtactsContactsEntryActivity" |
| 320 | android:targetActivity=".activities.PeopleActivity" |
| 321 | android:exported="true" |
| 322 | /> |
| 323 | |
| 324 | <!-- Backwards compatibility: "Phone" from Gingerbread and earlier --> |
| 325 | <activity-alias android:name="DialtactsActivity" |
| 326 | android:targetActivity=".activities.DialtactsActivity" |
| 327 | android:exported="true" |
| 328 | /> |
| 329 | |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 330 | <!-- An activity for joining contacts --> |
Dmitri Plotnikov | d21ddb2 | 2010-11-03 14:25:59 -0700 | [diff] [blame] | 331 | <activity android:name=".activities.JoinContactActivity" |
Daniel Lehmann | 134e53f | 2010-08-25 14:21:51 -0700 | [diff] [blame] | 332 | android:theme="@style/JoinContactActivityTheme" |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 333 | android:clearTaskOnLaunch="true" |
| 334 | > |
| 335 | <intent-filter> |
Dmitri Plotnikov | 501b7ea | 2010-04-07 17:20:49 -0700 | [diff] [blame] | 336 | <action android:name="com.android.contacts.action.JOIN_CONTACT" /> |
Dmitri Plotnikov | 57d27da | 2009-09-28 18:06:11 -0700 | [diff] [blame] | 337 | <category android:name="android.intent.category.DEFAULT" /> |
| 338 | </intent-filter> |
| 339 | </activity> |
| 340 | |
Dmitri Plotnikov | c85ad18 | 2010-09-17 18:12:49 -0700 | [diff] [blame] | 341 | <!-- Used to set options --> |
Daniel Lehmann | 1010574 | 2010-07-15 17:35:57 -0700 | [diff] [blame] | 342 | <activity |
Dmitri Plotnikov | c85ad18 | 2010-09-17 18:12:49 -0700 | [diff] [blame] | 343 | android:name=".preference.ContactsPreferenceActivity" |
| 344 | android:label="@string/activity_title_settings" |
Daniel Lehmann | 1010574 | 2010-07-15 17:35:57 -0700 | [diff] [blame] | 345 | android:theme="@style/ContactsPreferencesTheme" /> |
Jeff Sharkey | d5c5b9a | 2009-06-21 19:46:04 -0700 | [diff] [blame] | 346 | |
Katherine Kuan | 495db43 | 2011-07-06 18:58:46 -0700 | [diff] [blame] | 347 | <!-- Used to filter contacts list by account --> |
| 348 | <activity |
| 349 | android:name=".list.AccountFilterActivity" |
| 350 | android:label="@string/activity_title_contacts_filter" |
| 351 | android:theme="@style/ContactListFilterTheme" /> |
| 352 | |
Dmitri Plotnikov | d6e6b8a | 2010-09-15 16:23:02 -0700 | [diff] [blame] | 353 | <!-- Used to select display and sync groups --> |
| 354 | <activity |
| 355 | android:name=".list.CustomContactListFilterActivity" |
| 356 | android:label="@string/custom_list_filter" |
Katherine Kuan | 495db43 | 2011-07-06 18:58:46 -0700 | [diff] [blame] | 357 | android:theme="@style/ContactListFilterTheme" /> |
Dmitri Plotnikov | d6e6b8a | 2010-09-15 16:23:02 -0700 | [diff] [blame] | 358 | |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 359 | <activity |
Daniel Lehmann | 72af89f | 2010-10-18 15:15:59 -0700 | [diff] [blame] | 360 | android:name=".activities.ShowOrCreateActivity" |
Jeff Sharkey | cde7389 | 2011-04-07 00:48:02 -0700 | [diff] [blame] | 361 | android:theme="@android:style/Theme.Translucent.NoTitleBar"> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 362 | |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 363 | <intent-filter> |
| 364 | <action android:name="com.android.contacts.action.SHOW_OR_CREATE_CONTACT" /> |
Jeff Sharkey | 802b205 | 2009-08-04 14:21:06 -0700 | [diff] [blame] | 365 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 366 | <data android:scheme="mailto" /> |
| 367 | <data android:scheme="tel" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 368 | </intent-filter> |
Jeff Sharkey | e897162 | 2009-09-17 15:42:36 -0700 | [diff] [blame] | 369 | </activity> |
| 370 | |
Katherine Kuan | 9add0e5 | 2011-05-10 18:26:15 -0700 | [diff] [blame] | 371 | <!-- List of groups --> |
| 372 | <activity android:name=".activities.GroupBrowserActivity" |
| 373 | android:label="@string/contactsGroupsLabel" |
Katherine Kuan | 9856fce | 2011-06-01 10:24:09 -0700 | [diff] [blame] | 374 | android:theme="@style/PeopleTheme" |
Adam Powell | 8408060 | 2011-08-02 16:51:29 -0700 | [diff] [blame] | 375 | android:uiOptions="splitActionBarWhenNarrow" |
Katherine Kuan | 9add0e5 | 2011-05-10 18:26:15 -0700 | [diff] [blame] | 376 | android:launchMode="singleTop" |
Katherine Kuan | ab58395 | 2011-08-23 14:20:43 -0700 | [diff] [blame] | 377 | android:clearTaskOnLaunch="true"/> |
Katherine Kuan | 9add0e5 | 2011-05-10 18:26:15 -0700 | [diff] [blame] | 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="" |
Katherine Kuan | ab58395 | 2011-08-23 14:20:43 -0700 | [diff] [blame] | 382 | android:theme="@style/DetailActivityTheme"/> |
Katherine Kuan | fd8cded | 2011-05-11 11:34:56 -0700 | [diff] [blame] | 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" |
Katherine Kuan | fd70903 | 2011-08-02 14:18:16 -0700 | [diff] [blame] | 387 | android:theme="@style/EditorActivityTheme" |
Katherine Kuan | c6b8afe | 2011-06-22 19:03:50 -0700 | [diff] [blame] | 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" |
Daisuke Miyakawa | 85b9d6f | 2011-08-02 16:43:49 -0700 | [diff] [blame] | 397 | android:noHistory="true" |
Dmitri Plotnikov | ad3bd44 | 2010-03-23 22:49:43 -0700 | [diff] [blame] | 398 | android:taskAffinity="android.task.quickcontact" |
Jeff Sharkey | cde7389 | 2011-04-07 00:48:02 -0700 | [diff] [blame] | 399 | android:windowSoftInputMode="stateUnchanged"> |
Jeff Sharkey | 3f17759 | 2009-05-18 15:23:12 -0700 | [diff] [blame] | 400 | |
| 401 | <intent-filter> |
Evan Millar | 33b0845 | 2009-09-30 21:45:08 -0700 | [diff] [blame] | 402 | <action android:name="com.android.contacts.action.QUICK_CONTACT" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 403 | <category android:name="android.intent.category.DEFAULT" /> |
Dmitri Plotnikov | d11bca2 | 2010-12-08 20:15:17 -0800 | [diff] [blame] | 404 | <data android:mimeType="vnd.android.cursor.item/contact" /> |
| 405 | <data android:mimeType="vnd.android.cursor.item/person" /> |
The Android Open Source Project | e740e2e | 2009-03-11 12:11:58 -0700 | [diff] [blame] | 406 | </intent-filter> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 407 | </activity> |
| 408 | |
Daniel Lehmann | af8e386 | 2010-11-19 15:38:44 -0800 | [diff] [blame] | 409 | <!-- Flushes the QuickContact IntentCache --> |
| 410 | <receiver android:name=".quickcontact.PackageIntentReceiver"> |
| 411 | <intent-filter> |
| 412 | <action android:name="android.intent.action.PACKAGE_ADDED" /> |
| 413 | <data android:scheme="package" /> |
| 414 | </intent-filter> |
| 415 | <intent-filter> |
| 416 | <action android:name="android.intent.action.PACKAGE_REPLACED" /> |
| 417 | <data android:scheme="package" /> |
| 418 | </intent-filter> |
| 419 | <intent-filter> |
| 420 | <action android:name="android.intent.action.PACKAGE_REMOVED" /> |
| 421 | <data android:scheme="package" /> |
| 422 | </intent-filter> |
| 423 | <intent-filter> |
| 424 | <action android:name="android.intent.action.PACKAGE_CHANGED" /> |
| 425 | <data android:scheme="package" /> |
| 426 | </intent-filter> |
| 427 | </receiver> |
| 428 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 429 | <activity-alias android:name="ContactShortcut" |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 430 | android:targetActivity=".activities.ContactSelectionActivity" |
Romain Guy | 4eb77b6 | 2009-03-24 18:10:17 -0700 | [diff] [blame] | 431 | android:label="@string/shortcutContact" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 432 | android:icon="@mipmap/ic_launcher_shortcut_contact"> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 433 | |
| 434 | <intent-filter> |
| 435 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 436 | <category android:name="android.intent.category.DEFAULT" /> |
| 437 | </intent-filter> |
| 438 | |
| 439 | </activity-alias> |
| 440 | |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 441 | <activity-alias android:name="alias.DialShortcut" |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 442 | android:targetActivity=".activities.ContactSelectionActivity" |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 443 | android:label="@string/shortcutDialContact" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 444 | android:icon="@mipmap/ic_launcher_shortcut_directdial" |
Daniel Lehmann | e9b196e | 2010-10-26 12:17:39 -0700 | [diff] [blame] | 445 | android:enabled="@*android:bool/config_voice_capable"> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 446 | |
| 447 | <intent-filter> |
| 448 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 449 | <category android:name="android.intent.category.DEFAULT" /> |
Bernd Holzhey | a497ce5 | 2010-03-31 10:06:24 +0200 | [diff] [blame] | 450 | <category android:name="android.intent.category.CAR_MODE" /> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 451 | </intent-filter> |
| 452 | |
| 453 | </activity-alias> |
| 454 | |
| 455 | <activity-alias android:name="alias.MessageShortcut" |
Dmitri Plotnikov | b979b42 | 2010-07-01 15:29:15 -0700 | [diff] [blame] | 456 | android:targetActivity=".activities.ContactSelectionActivity" |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 457 | android:label="@string/shortcutMessageContact" |
Daniel Lehmann | 174eb0a | 2010-11-23 11:40:02 -0800 | [diff] [blame] | 458 | android:icon="@mipmap/ic_launcher_shortcut_directmessage" |
Daniel Lehmann | e9b196e | 2010-10-26 12:17:39 -0700 | [diff] [blame] | 459 | android:enabled="@*android:bool/config_voice_capable"> |
Dianne Hackborn | 333a615 | 2009-05-26 12:46:23 -0700 | [diff] [blame] | 460 | |
| 461 | <intent-filter> |
| 462 | <action android:name="android.intent.action.CREATE_SHORTCUT" /> |
| 463 | <category android:name="android.intent.category.DEFAULT" /> |
| 464 | </intent-filter> |
| 465 | |
| 466 | </activity-alias> |
| 467 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 468 | <activity android:name="CallDetailActivity" |
| 469 | android:label="@string/callDetailTitle" |
Daniel Lehmann | 134e53f | 2010-08-25 14:21:51 -0700 | [diff] [blame] | 470 | android:theme="@style/CallDetailActivityTheme" |
Flavio Lerda | c03b118 | 2011-07-22 15:44:08 +0100 | [diff] [blame] | 471 | android:screenOrientation="nosensor" |
Flavio Lerda | 0db051f | 2011-08-02 18:47:02 +0100 | [diff] [blame] | 472 | android:icon="@mipmap/ic_launcher_phone" |
Katherine Kuan | 9856fce | 2011-06-01 10:24:09 -0700 | [diff] [blame] | 473 | android:taskAffinity="android.task.contacts.phone" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 474 | > |
| 475 | <intent-filter> |
| 476 | <action android:name="android.intent.action.VIEW" /> |
| 477 | <category android:name="android.intent.category.DEFAULT" /> |
| 478 | <data android:mimeType="vnd.android.cursor.item/calls" /> |
| 479 | </intent-filter> |
| 480 | </activity> |
| 481 | |
| 482 | <!-- Views the details of a single contact --> |
Daniel Lehmann | 4cd9441 | 2010-04-08 16:44:36 -0700 | [diff] [blame] | 483 | <activity android:name=".activities.ContactDetailActivity" |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 484 | android:label="@string/viewContactTitle" |
Katherine Kuan | ab58395 | 2011-08-23 14:20:43 -0700 | [diff] [blame] | 485 | android:theme="@style/DetailActivityTheme"> |
Jeff Sharkey | 3f0b7b8 | 2009-08-12 11:28:53 -0700 | [diff] [blame] | 486 | |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 487 | <intent-filter android:label="@string/viewContactDesription"> |
| 488 | <action android:name="android.intent.action.VIEW" /> |
| 489 | <category android:name="android.intent.category.DEFAULT" /> |
Daniel Lehmann | c90c705 | 2011-03-16 18:42:34 -0700 | [diff] [blame] | 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" |
Katherine Kuan | fd70903 | 2011-08-02 14:18:16 -0700 | [diff] [blame] | 499 | android:theme="@style/EditorActivityTheme" |
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> |
Lixin Yue | 24fc763 | 2009-12-04 17:03:00 +0800 | [diff] [blame] | 594 | <action android:name="android.intent.action.VIEW" /> |
Attila Bodis | 1261e13 | 2010-03-18 22:06:37 -0700 | [diff] [blame] | 595 | <data android:mimeType="text/directory" /> |
Daisuke Miyakawa | 92ba98a | 2010-06-22 09:12:19 +0900 | [diff] [blame] | 596 | <data android:mimeType="text/vcard" /> |
Lixin Yue | 24fc763 | 2009-12-04 17:03:00 +0800 | [diff] [blame] | 597 | <data android:mimeType="text/x-vcard" /> |
Jeff Hamilton | 1167da4 | 2011-08-03 09:38:47 -0500 | [diff] [blame] | 598 | <data android:mimeType="text/x-vCard" /> |
| 599 | <category android:name="android.intent.category.DEFAULT" /> |
| 600 | </intent-filter> |
| 601 | </activity> |
| 602 | |
| 603 | <activity android:name=".vcard.NfcImportVCardActivity" |
| 604 | android:configChanges="orientation|screenSize|keyboardHidden" |
| 605 | android:theme="@style/BackgroundOnly"> |
| 606 | <intent-filter> |
| 607 | <action android:name="android.nfc.action.NDEF_DISCOVERED" /> |
| 608 | <data android:mimeType="text/vcard" /> |
| 609 | <data android:mimeType="text/x-vcard" /> |
| 610 | <data android:mimeType="text/x-vCard" /> |
Lixin Yue | 24fc763 | 2009-12-04 17:03:00 +0800 | [diff] [blame] | 611 | <category android:name="android.intent.category.DEFAULT" /> |
| 612 | </intent-filter> |
| 613 | </activity> |
| 614 | |
Daisuke Miyakawa | ab59660 | 2010-11-18 17:28:02 -0800 | [diff] [blame] | 615 | <activity android:name=".vcard.CancelActivity" |
Daisuke Miyakawa | 18b5190 | 2010-08-19 14:13:38 -0700 | [diff] [blame] | 616 | android:theme="@style/BackgroundOnly" /> |
| 617 | |
Daisuke Miyakawa | 1b918e5 | 2010-06-07 15:48:41 -0700 | [diff] [blame] | 618 | <activity android:name=".vcard.SelectAccountActivity" |
Daisuke Miyakawa | 6d2f27f | 2010-04-21 16:11:38 +0900 | [diff] [blame] | 619 | android:theme="@style/BackgroundOnly" /> |
| 620 | |
Daisuke Miyakawa | 1b918e5 | 2010-06-07 15:48:41 -0700 | [diff] [blame] | 621 | <activity android:name=".vcard.ExportVCardActivity" |
Daisuke Miyakawa | 0bec3b9 | 2009-09-25 13:33:27 -0700 | [diff] [blame] | 622 | android:theme="@style/BackgroundOnly" /> |
Dmitri Plotnikov | e124722 | 2010-06-02 18:14:21 -0700 | [diff] [blame] | 623 | |
Daisuke Miyakawa | d8fb81a | 2010-06-08 17:44:22 -0700 | [diff] [blame] | 624 | <service |
| 625 | android:name=".vcard.VCardService" |
| 626 | android:exported="false" /> |
| 627 | |
Dmitri Plotnikov | e124722 | 2010-06-02 18:14:21 -0700 | [diff] [blame] | 628 | <!-- Pinned header list demo --> |
| 629 | <activity android:name=".widget.PinnedHeaderListDemoActivity"> |
| 630 | <intent-filter> |
| 631 | <action android:name="android.intent.action.MAIN" /> |
| 632 | <category android:name="android.intent.category.DEFAULT" /> |
| 633 | </intent-filter> |
| 634 | </activity> |
Daniel Lehmann | 2d4f759 | 2010-10-12 23:31:31 -0700 | [diff] [blame] | 635 | |
| 636 | <!-- The widget that shows details and the social stream of a contact --> |
Daniel Lehmann | b93a26c | 2010-10-18 14:07:05 -0700 | [diff] [blame] | 637 | <receiver android:name=".socialwidget.SocialWidgetProvider" |
Daniel Lehmann | b0ab5d7 | 2010-11-03 16:21:22 -0700 | [diff] [blame] | 638 | android:label="@string/social_widget_label" > |
Daniel Lehmann | 2d4f759 | 2010-10-12 23:31:31 -0700 | [diff] [blame] | 639 | <intent-filter> |
| 640 | <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> |
| 641 | </intent-filter> |
| 642 | <meta-data android:name="android.appwidget.provider" |
Daniel Lehmann | b93a26c | 2010-10-18 14:07:05 -0700 | [diff] [blame] | 643 | android:resource="@xml/social_widget_info" /> |
Daniel Lehmann | 2d4f759 | 2010-10-12 23:31:31 -0700 | [diff] [blame] | 644 | </receiver> |
| 645 | |
Flavio Lerda | b78b709 | 2011-07-26 13:38:44 +0100 | [diff] [blame] | 646 | <receiver android:name=".calllog.CallLogReceiver"> |
Flavio Lerda | 87bd536 | 2011-06-30 12:20:43 +0100 | [diff] [blame] | 647 | <intent-filter> |
| 648 | <action android:name="android.intent.action.NEW_VOICEMAIL" /> |
| 649 | <data |
| 650 | android:scheme="content" |
| 651 | android:host="com.android.voicemail" |
Debashish Chatterjee | b7a508f | 2011-08-09 14:47:08 +0100 | [diff] [blame] | 652 | android:mimeType="vnd.android.cursor.item/voicemail" |
Flavio Lerda | 87bd536 | 2011-06-30 12:20:43 +0100 | [diff] [blame] | 653 | /> |
| 654 | </intent-filter> |
Flavio Lerda | b78b709 | 2011-07-26 13:38:44 +0100 | [diff] [blame] | 655 | <intent-filter android:priority="100"> |
| 656 | <action android:name="android.intent.action.BOOT_COMPLETED"/> |
| 657 | </intent-filter> |
Flavio Lerda | 87bd536 | 2011-06-30 12:20:43 +0100 | [diff] [blame] | 658 | </receiver> |
| 659 | |
Daniel Lehmann | 2d4f759 | 2010-10-12 23:31:31 -0700 | [diff] [blame] | 660 | <activity |
Daniel Lehmann | b93a26c | 2010-10-18 14:07:05 -0700 | [diff] [blame] | 661 | android:name=".socialwidget.SocialWidgetConfigureActivity" |
Daniel Lehmann | b0ab5d7 | 2010-11-03 16:21:22 -0700 | [diff] [blame] | 662 | android:theme="@android:style/Theme.Translucent.NoTitleBar" > |
Daniel Lehmann | 2d4f759 | 2010-10-12 23:31:31 -0700 | [diff] [blame] | 663 | <intent-filter> |
| 664 | <action android:name="android.intent.action.APPWIDGET_PICK" /> |
| 665 | </intent-filter> |
| 666 | </activity> |
Flavio Lerda | b78b709 | 2011-07-26 13:38:44 +0100 | [diff] [blame] | 667 | |
| 668 | <service |
| 669 | android:name=".calllog.CallLogNotificationsService" |
| 670 | android:exported="false" |
| 671 | /> |
The Android Open Source Project | 7aa0e4c | 2009-03-03 19:32:21 -0800 | [diff] [blame] | 672 | </application> |
| 673 | </manifest> |