The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 2 | package="com.android.settings" |
| 3 | android:sharedUserId="android.uid.system"> |
| 4 | |
| 5 | <uses-permission android:name="com.google.android.providers.gmail.permission.WRITE_GMAIL" /> |
| 6 | <uses-permission android:name="com.google.android.providers.gmail.permission.READ_GMAIL" /> |
| 7 | <uses-permission android:name="android.permission.WRITE_SETTINGS" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 8 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 9 | <uses-permission android:name="android.permission.CHANGE_CONFIGURATION" /> |
| 10 | <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" /> |
| 11 | <uses-permission android:name="android.permission.VIBRATE" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 12 | <uses-permission android:name="android.permission.BLUETOOTH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 13 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> |
| 14 | <uses-permission android:name="android.permission.HARDWARE_TEST" /> |
| 15 | <uses-permission android:name="android.permission.CALL_PHONE" /> |
| 16 | <uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" /> |
| 17 | <uses-permission android:name="android.permission.MASTER_CLEAR" /> |
| 18 | <uses-permission android:name="com.google.android.googleapps.permission.GOOGLE_AUTH" /> |
| 19 | <uses-permission android:name="android.permission.ACCESS_DOWNLOAD_MANAGER" /> |
| 20 | <uses-permission android:name="android.permission.READ_CONTACTS" /> |
| 21 | <uses-permission android:name="android.permission.WRITE_CONTACTS" /> |
| 22 | <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> |
| 23 | <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> |
| 24 | <uses-permission android:name="android.permission.INTERNET" /> |
| 25 | <uses-permission android:name="android.permission.CLEAR_APP_USER_DATA" /> |
| 26 | <uses-permission android:name="android.permission.READ_PHONE_STATE" /> |
| 27 | <uses-permission android:name="android.permission.MODIFY_PHONE_STATE" /> |
| 28 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> |
| 29 | <uses-permission android:name="android.permission.WRITE_APN_SETTINGS"/> |
| 30 | <uses-permission android:name="android.permission.ACCESS_CHECKIN_PROPERTIES"/> |
| 31 | |
| 32 | <application android:label="@string/settings_label" android:icon="@drawable/ic_launcher_settings"> |
| 33 | |
| 34 | <!-- Settings --> |
| 35 | |
| 36 | <activity android:name="Settings" android:label="@string/settings_label" |
| 37 | android:theme="@android:style/Theme.NoTitleBar" |
| 38 | android:clearTaskOnLaunch="true" |
| 39 | android:launchMode="singleTop"> |
| 40 | <intent-filter> |
| 41 | <action android:name="android.intent.action.MAIN" /> |
| 42 | <action android:name="android.settings.SETTINGS" /> |
| 43 | <category android:name="android.intent.category.DEFAULT" /> |
| 44 | <category android:name="android.intent.category.LAUNCHER" /> |
| 45 | </intent-filter> |
| 46 | </activity> |
| 47 | |
| 48 | <!-- Wireless Controls --> |
| 49 | |
| 50 | <activity android:name="WirelessSettings" |
| 51 | android:label="@string/radio_controls_title" |
| 52 | android:theme="@android:style/Theme.NoTitleBar"> |
| 53 | <intent-filter> |
| 54 | <action android:name="android.intent.action.MAIN" /> |
| 55 | <action android:name="android.settings.WIRELESS_SETTINGS" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 56 | <action android:name="android.settings.AIRPLANE_MODE_SETTINGS" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 57 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 58 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 59 | </intent-filter> |
| 60 | </activity> |
| 61 | |
| 62 | |
| 63 | <!-- Top-level settings --> |
| 64 | |
| 65 | <activity android:name=".wifi.WifiSettings" android:label="@string/wifi_settings" |
| 66 | android:theme="@android:style/Theme.NoTitleBar"> |
| 67 | <intent-filter> |
| 68 | <action android:name="android.intent.action.MAIN" /> |
| 69 | <action android:name="android.settings.WIFI_SETTINGS" /> |
| 70 | <action android:name="android.net.wifi.PICK_WIFI_NETWORK" /> |
| 71 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 72 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 73 | </intent-filter> |
| 74 | </activity> |
| 75 | |
The Android Open Source Project | 1152aff | 2009-01-15 16:12:13 -0800 | [diff] [blame] | 76 | <activity android:name=".wifi.AdvancedSettings" android:label="@string/wifi_ip_settings_titlebar" |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 77 | android:theme="@android:style/Theme.NoTitleBar"> |
| 78 | <intent-filter> |
| 79 | <action android:name="android.intent.action.MAIN" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 80 | <action android:name="android.settings.WIFI_IP_SETTINGS" /> |
| 81 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 82 | </intent-filter> |
| 83 | </activity> |
| 84 | |
| 85 | <activity android:name="ApnSettings" android:label="@string/apn_settings" |
| 86 | android:theme="@android:style/Theme.NoTitleBar"> |
| 87 | <intent-filter> |
| 88 | <action android:name="android.intent.action.MAIN" /> |
| 89 | <action android:name="android.settings.APN_SETTINGS" /> |
| 90 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 91 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 92 | </intent-filter> |
| 93 | </activity> |
| 94 | |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 95 | <activity android:name=".bluetooth.BluetoothSettings" |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 96 | android:label="@string/bluetooth_settings_title" |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 97 | android:theme="@android:style/Theme.NoTitleBar"> |
| 98 | <intent-filter> |
| 99 | <action android:name="android.intent.action.MAIN" /> |
| 100 | <action android:name="android.settings.BLUETOOTH_SETTINGS" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 101 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 102 | </intent-filter> |
| 103 | </activity> |
| 104 | |
| 105 | <activity android:name="DateTimeSettings" android:label="@string/date_and_time" |
| 106 | android:theme="@android:style/Theme.NoTitleBar"> |
| 107 | <intent-filter> |
| 108 | <action android:name="android.intent.action.MAIN" /> |
| 109 | <action android:name="android.settings.DATE_SETTINGS" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 110 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 111 | </intent-filter> |
| 112 | </activity> |
| 113 | |
| 114 | <activity android:name="DateTimeSettingsSetupWizard" android:label="@string/date_and_time"> |
| 115 | android:screenOrientation="portrait" |
| 116 | <intent-filter> |
| 117 | <action android:name="android.intent.action.MAIN" /> |
| 118 | </intent-filter> |
| 119 | </activity> |
| 120 | |
| 121 | <activity android:name="LocalePicker" android:label="@string/language_picker_title"> |
| 122 | <intent-filter> |
| 123 | <action android:name="android.intent.action.MAIN" /> |
| 124 | <action android:name="android.settings.LOCALE_SETTINGS" /> |
| 125 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 126 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 127 | </intent-filter> |
| 128 | </activity> |
| 129 | |
| 130 | <activity android:name="LocalePickerInSetupWizard" android:label="@string/language_picker_title"> |
| 131 | <intent-filter> |
| 132 | <action android:name="android.intent.action.MAIN" /> |
| 133 | </intent-filter> |
| 134 | </activity> |
| 135 | |
| 136 | <activity android:name="LanguageSettings" android:label="@string/language_picker_title" |
| 137 | android:theme="@android:style/Theme.NoTitleBar"> |
| 138 | <intent-filter> |
| 139 | <action android:name="android.intent.action.MAIN" /> |
| 140 | <category android:name="android.intent.category.DEFAULT" /> |
| 141 | </intent-filter> |
| 142 | </activity> |
| 143 | |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 144 | <activity android:name="InputMethodsSettings" android:icon="@drawable/app_settings" |
| 145 | android:label="@string/input_methods_settings_title" |
| 146 | android:theme="@android:style/Theme.NoTitleBar"> |
| 147 | <intent-filter> |
| 148 | <action android:name="android.intent.action.MAIN" /> |
| 149 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
| 150 | </intent-filter> |
| 151 | </activity> |
| 152 | |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 153 | <activity android:name="SoundAndDisplaySettings" android:label="@string/sound_and_display_settings" |
| 154 | android:theme="@android:style/Theme.NoTitleBar"> |
| 155 | <intent-filter> |
| 156 | <action android:name="android.intent.action.MAIN" /> |
| 157 | <action android:name="com.android.settings.SOUND_SETTINGS" /> |
| 158 | <action android:name="com.android.settings.DISPLAY_SETTINGS" /> |
| 159 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 160 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 161 | </intent-filter> |
| 162 | </activity> |
| 163 | |
| 164 | <activity android:name="DeviceInfoSettings" android:label="@string/device_info_settings" |
| 165 | android:theme="@android:style/Theme.NoTitleBar"> |
| 166 | <intent-filter> |
| 167 | <action android:name="android.intent.action.MAIN" /> |
| 168 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 169 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 170 | </intent-filter> |
| 171 | </activity> |
| 172 | |
| 173 | <activity android:name="SettingsLicenseActivity" |
| 174 | android:label="@string/settings_license_activity_title" |
| 175 | android:theme="@*android:style/Theme.Dialog.Alert"> |
| 176 | <intent-filter> |
| 177 | <action android:name="android.settings.LICENSE" /> |
| 178 | <category android:name="android.intent.category.DEFAULT" /> |
| 179 | </intent-filter> |
| 180 | </activity> |
| 181 | |
| 182 | <activity android:name="ApplicationSettings" android:label="@string/applications_settings_header" |
| 183 | android:theme="@android:style/Theme.NoTitleBar"> |
| 184 | <intent-filter> |
| 185 | <action android:name="android.intent.action.MAIN" /> |
| 186 | <action android:name="android.settings.APPLICATION_SETTINGS" /> |
| 187 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 188 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 189 | </intent-filter> |
| 190 | </activity> |
| 191 | |
| 192 | <activity android:name="ManageApplications" android:label="@string/manageapplications_settings_title"> |
| 193 | <intent-filter> |
| 194 | <action android:name="android.intent.action.MAIN" /> |
| 195 | <action android:name="android.intent.action.MANAGE_PACKAGE_STORAGE" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 196 | <action android:name="android.settings.MANAGE_APPLICATIONS_SETTINGS" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 197 | <category android:name="android.intent.category.DEFAULT" /> |
| 198 | <category android:name="android.intent.category.MONKEY" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 199 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 200 | </intent-filter> |
| 201 | </activity> |
| 202 | |
| 203 | <activity android:name="InstalledAppDetails" android:label="@string/application_info_label"> |
| 204 | <intent-filter> |
| 205 | <action android:name="android.intent.action.VIEW" /> |
| 206 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 207 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 208 | </intent-filter> |
| 209 | </activity> |
| 210 | |
| 211 | <activity android:name="SecuritySettings" android:label="@string/lockpattern_settings_title" |
| 212 | android:theme="@android:style/Theme.NoTitleBar"> |
| 213 | <intent-filter> |
| 214 | <action android:name="android.intent.action.MAIN" /> |
| 215 | <action android:name="android.settings.SECURITY_SETTINGS" /> |
| 216 | <action android:name="android.settings.LOCATION_SOURCE_SETTINGS" /> |
| 217 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 218 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 219 | </intent-filter> |
| 220 | </activity> |
| 221 | |
| 222 | <activity android:name="SimLockSettings" android:label="@string/sim_lock_settings" |
| 223 | android:process="com.android.phone" |
| 224 | android:theme="@android:style/Theme.NoTitleBar"> |
| 225 | <intent-filter> |
| 226 | <action android:name="android.intent.action.MAIN" /> |
| 227 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 228 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 229 | </intent-filter> |
| 230 | </activity> |
| 231 | |
| 232 | |
| 233 | |
| 234 | |
| 235 | <!-- Second and third-level settings --> |
| 236 | |
| 237 | <activity android:name="ConfirmLockPattern"/> |
| 238 | |
| 239 | <activity android:name="ChooseLockPattern" android:label="@string/lockpattern_change_lock_pattern_label"> |
| 240 | <intent-filter> |
| 241 | <action android:name="android.intent.action.DEFAULT" /> |
| 242 | </intent-filter> |
| 243 | </activity> |
| 244 | |
| 245 | <activity android:name="ChooseLockPatternTutorial" |
| 246 | android:label="@string/lockpattern_change_lock_pattern_label" |
| 247 | android:theme="@android:style/Theme.NoTitleBar"> |
| 248 | <intent-filter> |
| 249 | <action android:name="android.intent.action.DEFAULT" /> |
| 250 | </intent-filter> |
| 251 | </activity> |
| 252 | |
| 253 | <activity android:name="ChooseLockPatternExample" |
| 254 | android:label="@string/lockpattern_change_lock_pattern_label" |
| 255 | android:theme="@android:style/Theme.NoTitleBar"> |
| 256 | <intent-filter> |
| 257 | <action android:name="android.intent.action.DEFAULT" /> |
| 258 | </intent-filter> |
| 259 | </activity> |
| 260 | |
| 261 | <activity android:name="ZoneList" android:label="@string/choose_timezone" /> |
| 262 | |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 263 | <activity android:name=".deviceinfo.Status" android:label="@string/device_status_activity_title" |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 264 | android:process="com.android.phone" |
| 265 | android:theme="@android:style/Theme.NoTitleBar"> |
| 266 | <intent-filter> |
| 267 | <action android:name="android.intent.action.MAIN" /> |
| 268 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 269 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 270 | </intent-filter> |
| 271 | </activity> |
| 272 | |
| 273 | <activity android:name=".deviceinfo.Memory" android:label="@string/storage_settings_title" |
| 274 | android:theme="@android:style/Theme.NoTitleBar"> |
| 275 | <intent-filter> |
| 276 | <action android:name="android.intent.action.MAIN" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 277 | <action android:name="android.settings.INTERNAL_STORAGE_SETTINGS" /> |
| 278 | <action android:name="android.settings.MEMORY_CARD_SETTINGS" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 279 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 280 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 281 | </intent-filter> |
| 282 | </activity> |
| 283 | |
| 284 | <activity android:name="ApnEditor" android:label="@string/apn_edit"> |
| 285 | <intent-filter> |
| 286 | <action android:name="android.intent.action.VIEW" /> |
| 287 | <action android:name="android.intent.action.EDIT" /> |
| 288 | <category android:name="android.intent.category.DEFAULT" /> |
| 289 | <data android:mimeType="vnd.android.cursor.item/telephony-carrier" /> |
| 290 | </intent-filter> |
| 291 | |
| 292 | <intent-filter> |
| 293 | <action android:name="android.intent.action.INSERT" /> |
| 294 | <category android:name="android.intent.category.DEFAULT" /> |
| 295 | <data android:mimeType="vnd.android.cursor.dir/telephony-carrier" /> |
| 296 | </intent-filter> |
| 297 | </activity> |
| 298 | |
| 299 | <activity android:name="MasterClear" android:label="@string/master_clear_title"> |
| 300 | <intent-filter> |
| 301 | <action android:name="android.intent.action.MAIN" /> |
| 302 | </intent-filter> |
| 303 | </activity> |
| 304 | |
| 305 | <activity android:name=".quicklaunch.QuickLaunchSettings" android:label="@string/quick_launch_title" |
| 306 | android:theme="@android:style/Theme.NoTitleBar"> |
| 307 | <intent-filter> |
| 308 | <action android:name="android.intent.action.MAIN" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 309 | <action android:name="com.android.settings.QUICK_LAUNCH_SETTINGS" /> |
| 310 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 311 | </intent-filter> |
| 312 | </activity> |
| 313 | |
| 314 | <activity android:name=".quicklaunch.BookmarkPicker" android:label="@string/quick_launch_title"> |
| 315 | <intent-filter> |
| 316 | <action android:name="android.intent.action.MAIN" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 317 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 318 | </intent-filter> |
| 319 | </activity> |
| 320 | |
| 321 | <activity android:name="DevelopmentSettings" android:icon="@drawable/app_settings" |
| 322 | android:label="@string/development_settings_title" |
| 323 | android:theme="@android:style/Theme.NoTitleBar"> |
| 324 | <intent-filter> |
| 325 | <action android:name="android.intent.action.MAIN" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 326 | <action android:name="com.android.settings.APPLICATION_DEVELOPMENT_SETTINGS" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 327 | </intent-filter> |
| 328 | </activity> |
| 329 | |
| 330 | |
| 331 | |
| 332 | |
| 333 | <!-- System-triggered settings --> |
| 334 | |
| 335 | <receiver android:name="SdCardErrorReceiver"> |
| 336 | <intent-filter> |
| 337 | <action android:name="android.intent.action.MEDIA_BAD_REMOVAL" /> |
| 338 | <data android:scheme="file" /> |
| 339 | </intent-filter> |
| 340 | <intent-filter> |
| 341 | <action android:name="android.intent.action.MEDIA_UNMOUNTABLE" /> |
| 342 | <data android:scheme="file" /> |
| 343 | </intent-filter> |
| 344 | </receiver> |
| 345 | |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 346 | <!-- Bluetooth stuff --> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 347 | |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 348 | <activity android:name=".bluetooth.ConnectSpecificProfilesActivity" |
| 349 | android:label="@string/bluetooth_connect_specific_profiles_title" /> |
| 350 | |
| 351 | <activity android:name=".bluetooth.BluetoothPinDialog" |
| 352 | android:label="@string/bluetooth_pin_entry" |
| 353 | android:theme="@*android:style/Theme.Dialog.Alert"> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 354 | <intent-filter> |
| 355 | <action android:name="android.bluetooth.intent.action.PAIRING_REQUEST" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 356 | <category android:name="android.intent.category.DEFAULT" /> |
| 357 | </intent-filter> |
| 358 | </activity> |
| 359 | |
| 360 | <receiver android:name=".bluetooth.BluetoothPinRequest"> |
| 361 | <intent-filter> |
| 362 | <action android:name="android.bluetooth.intent.action.PAIRING_REQUEST" /> |
| 363 | <action android:name="android.bluetooth.intent.action.PAIRING_CANCEL" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 364 | </intent-filter> |
| 365 | </receiver> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 366 | |
| 367 | <activity android:name="ActivityPicker" android:label="@string/activity_picker_label"> |
| 368 | <intent-filter> |
| 369 | <action android:name="android.intent.action.PICK_ACTIVITY" /> |
| 370 | <category android:name="android.intent.category.DEFAULT" /> |
| 371 | </intent-filter> |
| 372 | </activity> |
| 373 | |
| 374 | |
| 375 | |
| 376 | |
| 377 | |
| 378 | <!-- Development settings --> |
| 379 | |
| 380 | <activity android:name="DebugIntentSender" android:label="@string/debug_intent_sender_label"> |
| 381 | <intent-filter> |
| 382 | <action android:name="android.intent.action.MAIN" /> |
| 383 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
| 384 | </intent-filter> |
| 385 | </activity> |
| 386 | |
| 387 | <activity android:name="DeviceInfo" android:label="@string/device_info_label"> |
| 388 | <intent-filter> |
| 389 | <action android:name="android.intent.action.MAIN" /> |
| 390 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 391 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 392 | </intent-filter> |
| 393 | </activity> |
| 394 | |
| 395 | <!-- DeviceInfo adds the user's requested build to stats upload. --> |
| 396 | <receiver android:name=".DeviceInfo$StatsReportReceiver"> |
| 397 | <intent-filter> |
| 398 | <action android:name="android.intent.action.STATISTICS_REPORT" /> |
| 399 | </intent-filter> |
| 400 | </receiver> |
| 401 | |
| 402 | <activity android:name="BatteryInfo" android:label="@string/battery_info_label"> |
| 403 | <intent-filter> |
| 404 | <action android:name="android.intent.action.MAIN" /> |
| 405 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 406 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 407 | </intent-filter> |
| 408 | </activity> |
| 409 | |
The Android Open Source Project | 5962e18 | 2009-01-09 17:51:25 -0800 | [diff] [blame] | 410 | <activity android:name="BatteryHistory" android:label="@string/battery_history_label"> |
| 411 | <intent-filter> |
| 412 | <action android:name="android.intent.action.MAIN" /> |
| 413 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
| 414 | </intent-filter> |
| 415 | </activity> |
| 416 | |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 417 | <activity android:name="Display" android:label="@string/display_label" |
| 418 | android:configChanges="fontScale"> |
| 419 | <intent-filter> |
| 420 | <action android:name="android.intent.action.MAIN" /> |
| 421 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
| 422 | </intent-filter> |
| 423 | </activity> |
| 424 | |
| 425 | <activity android:name="RadioInfo" android:label="@string/phone_info_label" |
| 426 | android:process="com.android.phone"> |
| 427 | <intent-filter> |
| 428 | <action android:name="android.intent.action.MAIN" /> |
| 429 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
| 430 | </intent-filter> |
| 431 | </activity> |
| 432 | |
| 433 | <activity android:name="SdCardSettings" android:label="@string/sd_card_settings_label"> |
| 434 | <intent-filter> |
| 435 | <action android:name="android.intent.action.MAIN" /> |
| 436 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 437 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 438 | </intent-filter> |
| 439 | </activity> |
| 440 | |
| 441 | <activity android:name="ProxySelector" android:label="@string/proxy_settings_label" |
| 442 | android:theme="@android:style/Theme.Dialog"> |
| 443 | <intent-filter> |
| 444 | <action android:name="android.intent.action.MAIN" /> |
| 445 | <category android:name="android.intent.category.DEVELOPMENT_PREFERENCE" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 446 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 447 | </intent-filter> |
| 448 | </activity> |
| 449 | |
| 450 | <!-- TODO: Is this needed? --> |
| 451 | <activity android:name="BandMode" |
| 452 | android:theme="@android:style/Theme.Dialog" |
| 453 | android:process="com.android.phone"> |
| 454 | <intent-filter> |
| 455 | <action android:name="android.intent.action.MAIN" /> |
| 456 | <category android:name="android.intent.category.DEFAULT" /> |
The Android Open Source Project | abc48f8 | 2008-12-17 18:06:01 -0800 | [diff] [blame] | 457 | <category android:name="android.intent.category.VOICE_LAUNCH" /> |
The Android Open Source Project | de2d9f5 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 458 | </intent-filter> |
| 459 | </activity> |
| 460 | |
| 461 | <activity android:name="TestingSettings" android:label="@string/testing" |
| 462 | android:theme="@android:style/Theme.NoTitleBar">> |
| 463 | <intent-filter> |
| 464 | <action android:name="android.intent.action.MAIN" /> |
| 465 | <category android:name="android.intent.category.DEFAULT" /> |
| 466 | </intent-filter> |
| 467 | </activity> |
| 468 | |
| 469 | <receiver android:name="TestingSettingsBroadcastReceiver"> |
| 470 | <intent-filter> |
| 471 | <action android:name="android.provider.Telephony.SECRET_CODE" /> |
| 472 | <data android:scheme="android_secret_code" android:host="4636" /> |
| 473 | </intent-filter> |
| 474 | </receiver> |
| 475 | |
| 476 | |
| 477 | </application> |
| 478 | |
| 479 | </manifest> |
| 480 | |