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