blob: 23683451aadbf200fd1e8587bcc65829674546f3 [file] [log] [blame]
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -07001<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 Projectabc48f82008-12-17 18:06:01 -08008 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -07009 <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 Projectabc48f82008-12-17 18:06:01 -080012 <uses-permission android:name="android.permission.BLUETOOTH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070013 <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 Project590c0a92009-01-22 00:13:44 -080031 <uses-permission android:name="android.permission.READ_USER_DICTIONARY"/>
32 <uses-permission android:name="android.permission.WRITE_USER_DICTIONARY"/>
The Android Open Source Project1feaa852009-02-10 15:44:05 -080033 <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 Projectde2d9f52008-10-21 07:00:00 -070036
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 Projectde2d9f52008-10-21 07:00:00 -070042 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 Project1feaa852009-02-10 15:44:05 -080056 >
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070057 <intent-filter>
58 <action android:name="android.intent.action.MAIN" />
59 <action android:name="android.settings.WIRELESS_SETTINGS" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -080060 <action android:name="android.settings.AIRPLANE_MODE_SETTINGS" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070061 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -080062 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070063 </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 Project1feaa852009-02-10 15:44:05 -080070 >
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070071 <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 Projectabc48f82008-12-17 18:06:01 -080076 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070077 </intent-filter>
78 </activity>
79
The Android Open Source Project1152aff2009-01-15 16:12:13 -080080 <activity android:name=".wifi.AdvancedSettings" android:label="@string/wifi_ip_settings_titlebar"
The Android Open Source Project1feaa852009-02-10 15:44:05 -080081 >
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070082 <intent-filter>
83 <action android:name="android.intent.action.MAIN" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -080084 <action android:name="android.settings.WIFI_IP_SETTINGS" />
85 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070086 </intent-filter>
87 </activity>
88
89 <activity android:name="ApnSettings" android:label="@string/apn_settings"
The Android Open Source Project1feaa852009-02-10 15:44:05 -080090 >
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070091 <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 Projectabc48f82008-12-17 18:06:01 -080095 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -070096 </intent-filter>
97 </activity>
98
The Android Open Source Projectabc48f82008-12-17 18:06:01 -080099 <activity android:name=".bluetooth.BluetoothSettings"
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700100 android:label="@string/bluetooth_settings_title"
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800101 >
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700102 <intent-filter>
103 <action android:name="android.intent.action.MAIN" />
104 <action android:name="android.settings.BLUETOOTH_SETTINGS" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800105 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700106 </intent-filter>
107 </activity>
108
109 <activity android:name="DateTimeSettings" android:label="@string/date_and_time"
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800110 >
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700111 <intent-filter>
112 <action android:name="android.intent.action.MAIN" />
113 <action android:name="android.settings.DATE_SETTINGS" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800114 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700115 </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 Projectabc48f82008-12-17 18:06:01 -0800130 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700131 </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 Project1feaa852009-02-10 15:44:05 -0800141 >
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700142 <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 Projectabc48f82008-12-17 18:06:01 -0800148 <activity android:name="InputMethodsSettings" android:icon="@drawable/app_settings"
149 android:label="@string/input_methods_settings_title"
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800150 >
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800151 <intent-filter>
152 <action android:name="android.intent.action.MAIN" />
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800153 <action android:name="android.settings.INPUT_METHOD_SETTINGS" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800154 <category android:name="android.intent.category.VOICE_LAUNCH" />
155 </intent-filter>
156 </activity>
157
The Android Open Source Project590c0a92009-01-22 00:13:44 -0800158 <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 Project1feaa852009-02-10 15:44:05 -0800162 <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 Project590c0a92009-01-22 00:13:44 -0800165 <category android:name="android.intent.category.VOICE_LAUNCH" />
166 </intent-filter>
167 </activity>
168
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700169 <activity android:name="SoundAndDisplaySettings" android:label="@string/sound_and_display_settings"
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800170 >
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700171 <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 Projectabc48f82008-12-17 18:06:01 -0800176 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700177 </intent-filter>
178 </activity>
179
180 <activity android:name="DeviceInfoSettings" android:label="@string/device_info_settings"
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800181 >
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700182 <intent-filter>
183 <action android:name="android.intent.action.MAIN" />
184 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800185 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700186 </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 Project1feaa852009-02-10 15:44:05 -0800199 >
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700200 <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 Projectabc48f82008-12-17 18:06:01 -0800204 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700205 </intent-filter>
206 </activity>
207
The Android Open Source Projecta578a6c2009-03-03 14:04:35 -0800208 <activity android:name="ManageApplications" android:label="@string/manageapplications_settings_title">
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700209 <intent-filter>
210 <action android:name="android.intent.action.MAIN" />
211 <action android:name="android.intent.action.MANAGE_PACKAGE_STORAGE" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800212 <action android:name="android.settings.MANAGE_APPLICATIONS_SETTINGS" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700213 <category android:name="android.intent.category.DEFAULT" />
214 <category android:name="android.intent.category.MONKEY" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800215 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700216 </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 Projectabc48f82008-12-17 18:06:01 -0800223 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700224 </intent-filter>
225 </activity>
226
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800227 <activity android:name="SecuritySettings" android:label="@string/security_settings_title">
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700228 <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 Projectabc48f82008-12-17 18:06:01 -0800233 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700234 </intent-filter>
235 </activity>
236
237 <activity android:name="SimLockSettings" android:label="@string/sim_lock_settings"
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800238 android:process="com.android.phone">
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700239 <intent-filter>
240 <action android:name="android.intent.action.MAIN" />
241 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800242 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700243 </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 Project1feaa852009-02-10 15:44:05 -0800261 >
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700262 <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 Project1feaa852009-02-10 15:44:05 -0800268 android:label="@string/lockpattern_change_lock_pattern_label">
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700269 <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 Projectabc48f82008-12-17 18:06:01 -0800276 <activity android:name=".deviceinfo.Status" android:label="@string/device_status_activity_title"
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800277 android:process="com.android.phone">
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700278 <intent-filter>
279 <action android:name="android.intent.action.MAIN" />
280 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800281 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700282 </intent-filter>
283 </activity>
284
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800285 <activity android:name=".deviceinfo.Memory" android:label="@string/storage_settings_title">
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700286 <intent-filter>
287 <action android:name="android.intent.action.MAIN" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800288 <action android:name="android.settings.INTERNAL_STORAGE_SETTINGS" />
289 <action android:name="android.settings.MEMORY_CARD_SETTINGS" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700290 <category android:name="android.intent.category.DEFAULT" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800291 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700292 </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 Project1feaa852009-02-10 15:44:05 -0800316 <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 Projectde2d9f52008-10-21 07:00:00 -0700324 <intent-filter>
325 <action android:name="android.intent.action.MAIN" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800326 <action android:name="com.android.settings.QUICK_LAUNCH_SETTINGS" />
327 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700328 </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 Projectabc48f82008-12-17 18:06:01 -0800334 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700335 </intent-filter>
336 </activity>
337
338 <activity android:name="DevelopmentSettings" android:icon="@drawable/app_settings"
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800339 android:label="@string/development_settings_title">
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700340 <intent-filter>
341 <action android:name="android.intent.action.MAIN" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800342 <action android:name="com.android.settings.APPLICATION_DEVELOPMENT_SETTINGS" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700343 </intent-filter>
344 </activity>
345
346
347
348
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800349 <!-- Bluetooth stuff -->
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700350
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800351 <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 Projectde2d9f52008-10-21 07:00:00 -0700357 <intent-filter>
358 <action android:name="android.bluetooth.intent.action.PAIRING_REQUEST" />
The Android Open Source Projectabc48f82008-12-17 18:06:01 -0800359 <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 Projectde2d9f52008-10-21 07:00:00 -0700367 </intent-filter>
368 </receiver>
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700369
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 Projectabc48f82008-12-17 18:06:01 -0800394 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700395 </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 Projectabc48f82008-12-17 18:06:01 -0800409 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700410 </intent-filter>
411 </activity>
412
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800413 <activity android:name=".battery_history.BatteryHistory" android:label="@string/battery_history_label">
The Android Open Source Project5962e182009-01-09 17:51:25 -0800414 <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 Projectde2d9f52008-10-21 07:00:00 -0700420 <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 Projectabc48f82008-12-17 18:06:01 -0800440 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700441 </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 Projectabc48f82008-12-17 18:06:01 -0800449 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700450 </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 Projectabc48f82008-12-17 18:06:01 -0800460 <category android:name="android.intent.category.VOICE_LAUNCH" />
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700461 </intent-filter>
462 </activity>
463
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800464 <activity android:name="TestingSettings" android:label="@string/testing">
The Android Open Source Projectde2d9f52008-10-21 07:00:00 -0700465 <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 Project1feaa852009-02-10 15:44:05 -0800478 <!-- Standard picker for gadgets -->
The Android Open Source Projecta578a6c2009-03-03 14:04:35 -0800479
480 <activity android:name="GadgetPickActivity" android:label="@string/gadget_picker_title">
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800481 <intent-filter>
The Android Open Source Projectb9f58512009-02-13 12:57:53 -0800482 <action android:name="android.gadget.action.GADGET_PICK" />
The Android Open Source Project1feaa852009-02-10 15:44:05 -0800483 <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 Projectde2d9f52008-10-21 07:00:00 -0700493
494 </application>
495
496</manifest>
497