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