blob: 4d039a6072c757f0e51dcc0a712f24309142549b [file] [log] [blame]
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2008 The Android Open Source Project
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
Selim Gurun029c13e2014-05-05 16:02:41 -07007
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08008 http://www.apache.org/licenses/LICENSE-2.0
Selim Gurun029c13e2014-05-05 16:02:41 -07009
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080010 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15-->
16
17<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
Sudheer Shankac779bec2016-04-19 22:48:26 -070018 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080019 android:title="@string/development_settings_title">
Dianne Hackbornfd8c3152012-07-13 14:26:23 -070020 <com.android.settings.BugreportPreference
21 android:key="bugreport"
Dianne Hackborn2d803a32012-08-07 11:26:32 -070022 android:title="@*android:string/bugreport_title"
23 android:dialogTitle="@*android:string/bugreport_title" />
Dianne Hackbornfd8c3152012-07-13 14:26:23 -070024
Fan Zhang1c118b52016-12-09 13:04:24 -080025 <Preference
Christopher Tatefac0ea72011-08-12 17:22:41 -070026 android:key="local_backup_password"
27 android:title="@string/local_backup_password_title"
28 android:summary="@string/local_backup_password_summary_none"
29 android:persistent="false" >
30 <intent
31 android:action="android.settings.privacy.SET_FULL_BACKUP_PASSWORD"
32 android:targetPackage="com.android.settings"
33 android:targetClass="com.android.settings.SetFullBackupPassword" />
Fan Zhang1c118b52016-12-09 13:04:24 -080034 </Preference>
Christopher Tatefac0ea72011-08-12 17:22:41 -070035
Sudheer Shankac779bec2016-04-19 22:48:26 -070036 <com.android.settingslib.RestrictedSwitchPreference
Selim Gurun029c13e2014-05-05 16:02:41 -070037 android:key="keep_screen_on"
38 android:title="@string/keep_screen_on"
Sudheer Shankac779bec2016-04-19 22:48:26 -070039 android:summary="@string/keep_screen_on_summary"
40 settings:useAdditionalSummary="true" />
Dianne Hackborn9244df42012-02-14 13:25:41 -080041
42 <ListPreference
43 android:key="hdcp_checking"
44 android:title="@string/hdcp_checking_title"
45 android:dialogTitle="@string/hdcp_checking_dialog_title"
46 android:entries="@array/hdcp_checking_titles"
47 android:entryValues="@array/hdcp_checking_values" />
48
Fabrice Di Meglio88638732014-10-14 16:43:37 -070049 <SwitchPreference
Zhihai Xu84bbb542013-07-26 13:33:16 -070050 android:key="bt_hci_snoop_log"
51 android:title="@string/bt_hci_snoop_log"
52 android:summary="@string/bt_hci_snoop_log_summary"/>
53
Mahaver Chopradcf3d7c2016-05-11 18:18:23 +010054 <com.android.settingslib.RestrictedSwitchPreference
Andres Moralesce249fe2014-07-07 16:58:16 -070055 android:key="oem_unlock_enable"
56 android:title="@string/oem_unlock_enable"
Mahaver Chopradcf3d7c2016-05-11 18:18:23 +010057 android:summary="@string/oem_unlock_enable_summary"
58 settings:useAdditionalSummary="true"/>
Andres Moralesce249fe2014-07-07 16:58:16 -070059
Fan Zhang1c118b52016-12-09 13:04:24 -080060 <Preference
Jason Monk5dc70b12015-03-25 11:03:59 -040061 android:key="running_apps"
62 android:title="@string/runningservices_settings_title"
63 android:summary="@string/runningservices_settings_summary"
64 android:fragment="com.android.settings.applications.RunningServices" />
65
Fan Zhang1c118b52016-12-09 13:04:24 -080066 <Preference
Paul Lawrenceacbac8c2015-11-02 12:42:42 -080067 android:key="convert_to_file_encryption"
68 android:title="@string/convert_to_file_encryption"
69 android:summary="@string/convert_to_file_encryption_enabled"
Paul Lawrence0e1a46c2015-11-04 05:09:02 -080070 android:fragment="com.android.settings.applications.ConvertToFbe" />
Paul Lawrenceacbac8c2015-11-02 12:42:42 -080071
Jason Monk16a8e8d2015-09-23 16:08:13 -040072 <com.android.settings.ColorModePreference
73 android:key="color_mode"
74 android:title="@string/picture_color_mode"
Jason Monk31c7c322016-01-20 14:41:52 -050075 android:summary="@string/picture_color_mode_desc" />
Jason Monk16a8e8d2015-09-23 16:08:13 -040076
Gustav Sennton4d3334c2016-12-13 19:16:48 +000077 <Preference android:key="select_webview_provider"
Gustav Sennton0d54bbf2015-10-30 18:55:32 +000078 android:title="@string/select_webview_provider_title"
Gustav Sennton4d3334c2016-12-13 19:16:48 +000079 android:dialogTitle="@string/select_webview_provider_dialog_title" />
Gustav Sennton0d54bbf2015-10-30 18:55:32 +000080
Steve Pfetschb3fef372016-01-13 17:07:35 -080081 <SwitchPreference
Tobias Sargeantf8364f52016-02-11 14:52:38 +000082 android:key="enable_webview_multiprocess"
83 android:title="@string/enable_webview_multiprocess"
84 android:summary="@string/enable_webview_multiprocess_desc" />
85
86 <SwitchPreference
Steve Pfetschb3fef372016-01-13 17:07:35 -080087 android:key="color_temperature"
88 android:title="@string/color_temperature"
Jason Monk31c7c322016-01-20 14:41:52 -050089 android:summary="@string/color_temperature_desc" />
Steve Pfetschb3fef372016-01-13 17:07:35 -080090
Tao Bao45a2c162016-02-15 20:03:22 -080091 <SwitchPreference
Steven Moreland73dd0ae2017-01-13 11:31:41 -080092 android:key="enable_hal_binderization"
93 android:title="@string/enable_hal_binderization" />
94
95 <SwitchPreference
Tao Bao45a2c162016-02-15 20:03:22 -080096 android:key="ota_disable_automatic_update"
97 android:title="@string/ota_disable_automatic_update" />
98
Fan Zhang1c118b52016-12-09 13:04:24 -080099 <Preference
Jason Monkfb0d8fb2016-04-12 13:09:13 -0400100 android:key="demo_mode"
101 android:title="@string/demo_mode">
102 <intent android:action="com.android.settings.action.DEMO_MODE" />
Fan Zhang1c118b52016-12-09 13:04:24 -0800103 </Preference>
Jason Monkfb0d8fb2016-04-12 13:09:13 -0400104
Sunny Goyalc9607512017-02-06 15:19:00 -0800105 <Preference
106 android:key="quick_settings_tiles"
107 android:title="@string/quick_settings_developer_tiles">
108 <intent
109 android:targetPackage="com.android.settings"
110 android:targetClass="com.android.settings.qstile.DevelopmentTileConfigActivity" />
111 </Preference>
112
Dianne Hackborn9244df42012-02-14 13:25:41 -0800113 <PreferenceCategory android:key="debug_debugging_category"
114 android:title="@string/debug_debugging_category">
115
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700116 <SwitchPreference
Dianne Hackborn9244df42012-02-14 13:25:41 -0800117 android:key="enable_adb"
118 android:title="@string/enable_adb"
119 android:summary="@string/enable_adb_summary"/>
120
Benoit Goby0761ffc2012-12-21 16:43:20 -0800121 <Preference android:key="clear_adb_keys"
122 android:title="@string/clear_adb_keys" />
123
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700124 <SwitchPreference
Jeff Sharkeyd390b702013-03-05 23:31:45 -0800125 android:key="enable_terminal"
126 android:title="@string/enable_terminal_title"
127 android:summary="@string/enable_terminal_summary" />
128
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700129 <SwitchPreference
Dianne Hackborn2d803a32012-08-07 11:26:32 -0700130 android:key="bugreport_in_power"
131 android:title="@string/bugreport_in_power"
132 android:summary="@string/bugreport_in_power_summary"/>
133
Fan Zhang1c118b52016-12-09 13:04:24 -0800134 <Preference android:key="mock_location_app"
Svet Ganov02e65a12015-05-13 10:39:35 -0700135 android:title="@string/mock_location_app" />
Dianne Hackborn9244df42012-02-14 13:25:41 -0800136
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700137 <SwitchPreference
Jon Miranda0b652942014-08-12 09:08:29 -0700138 android:key="debug_view_attributes"
139 android:title="@string/debug_view_attributes" />
140
Fan Zhang1c118b52016-12-09 13:04:24 -0800141 <Preference android:key="debug_app"
Dianne Hackborn9244df42012-02-14 13:25:41 -0800142 android:title="@string/debug_app" />
143
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700144 <SwitchPreference
Dianne Hackborn9244df42012-02-14 13:25:41 -0800145 android:key="wait_for_debugger"
146 android:title="@string/wait_for_debugger"
147 android:summary="@string/wait_for_debugger_summary"/>
148
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700149 <SwitchPreference
rich canningsf0421142012-09-25 16:20:36 -0700150 android:key="verify_apps_over_usb"
151 android:title="@string/verify_apps_over_usb_title"
152 android:summary="@string/verify_apps_over_usb_summary"/>
153
Lorenzo Colitti8fc93412015-03-16 23:45:55 +0900154 <ListPreference
155 android:key="select_logd_size"
156 android:title="@string/select_logd_size_title"
157 android:dialogTitle="@string/select_logd_size_dialog_title"
158 android:entries="@array/select_logd_size_titles"
159 android:entryValues="@array/select_logd_size_values" />
160
Mark Salyzync8b1c3e2016-06-03 10:18:23 -0700161 <ListPreference
162 android:key="select_logpersist"
163 android:title="@string/select_logpersist_title"
164 android:dialogTitle="@string/select_logpersist_dialog_title"
165 android:entries="@array/select_logpersist_titles"
166 android:entryValues="@array/select_logpersist_values" />
167
Lorenzo Colitti8fc93412015-03-16 23:45:55 +0900168 </PreferenceCategory>
169
170 <PreferenceCategory android:key="debug_networking_category"
171 android:title="@string/debug_networking_category">
172
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700173 <SwitchPreference
Chong Zhang6c607382013-06-06 12:42:24 -0700174 android:key="wifi_display_certification"
175 android:title="@string/wifi_display_certification"
176 android:summary="@string/wifi_display_certification_summary"/>
vandwallec9a66982014-05-21 15:21:16 -0700177
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700178 <SwitchPreference
vandwallec9a66982014-05-21 15:21:16 -0700179 android:key="wifi_verbose_logging"
Michael Bestas4566fc22014-11-24 01:52:38 +0200180 android:title="@string/wifi_verbose_logging"
vandwalle653cfee2014-05-22 13:09:20 -0700181 android:summary="@string/wifi_verbose_logging_summary"/>
vandwallec9a66982014-05-21 15:21:16 -0700182
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700183 <SwitchPreference
vandwalle5e7b3ad2014-06-18 19:01:13 -0700184 android:key="wifi_aggressive_handover"
Michael Bestas4566fc22014-11-24 01:52:38 +0200185 android:title="@string/wifi_aggressive_handover"
vandwalle5e7b3ad2014-06-18 19:01:13 -0700186 android:summary="@string/wifi_aggressive_handover_summary"/>
187
Michael Bestas4566fc22014-11-24 01:52:38 +0200188 <SwitchPreference
vandwalle5e7b3ad2014-06-18 19:01:13 -0700189 android:key="wifi_allow_scan_with_traffic"
Michael Bestas4566fc22014-11-24 01:52:38 +0200190 android:title="@string/wifi_allow_scan_with_traffic"
vandwalle5e7b3ad2014-06-18 19:01:13 -0700191 android:summary="@string/wifi_allow_scan_with_traffic_summary"/>
192
Lorenzo Colitti8fc93412015-03-16 23:45:55 +0900193 <SwitchPreference
Erik Kline54861e12015-04-30 12:58:08 +0900194 android:key="mobile_data_always_on"
195 android:title="@string/mobile_data_always_on"
196 android:summary="@string/mobile_data_always_on_summary"/>
197
Mike Lockwood3f6ef342014-09-22 12:15:24 -0700198 <ListPreference
199 android:key="select_usb_configuration"
200 android:title="@string/select_usb_configuration_title"
201 android:dialogTitle="@string/select_usb_configuration_dialog_title"
202 android:entries="@array/usb_configuration_titles"
203 android:entryValues="@array/usb_configuration_values" />
204
Andre Eisenbach591c6c42016-02-08 15:40:23 -0800205 <SwitchPreference
206 android:key="bluetooth_disable_absolute_volume"
207 android:title="@string/bluetooth_disable_absolute_volume"
208 android:summary="@string/bluetooth_disable_absolute_volume_summary"/>
Pavlin Radoslavovc65956e2017-01-05 10:52:21 -0800209
210 <ListPreference
211 android:key="bluetooth_select_a2dp_codec"
212 android:title="@string/bluetooth_select_a2dp_codec_type"
213 android:dialogTitle="@string/bluetooth_select_a2dp_codec_type_dialog_title"
214 android:entries="@array/bluetooth_a2dp_codec_titles"
215 android:entryValues="@array/bluetooth_a2dp_codec_values" />
216
217 <ListPreference
218 android:key="bluetooth_select_a2dp_sample_rate"
219 android:title="@string/bluetooth_select_a2dp_codec_sample_rate"
220 android:dialogTitle="@string/bluetooth_select_a2dp_codec_sample_rate_dialog_title"
221 android:entries="@array/bluetooth_a2dp_codec_sample_rate_titles"
222 android:entryValues="@array/bluetooth_a2dp_codec_sample_rate_values" />
223
224 <ListPreference
225 android:key="bluetooth_select_a2dp_bits_per_sample"
226 android:title="@string/bluetooth_select_a2dp_codec_bits_per_sample"
227 android:dialogTitle="@string/bluetooth_select_a2dp_codec_bits_per_sample_dialog_title"
228 android:entries="@array/bluetooth_a2dp_codec_bits_per_sample_titles"
229 android:entryValues="@array/bluetooth_a2dp_codec_bits_per_sample_values" />
230
231 <ListPreference
232 android:key="bluetooth_select_a2dp_channel_mode"
233 android:title="@string/bluetooth_select_a2dp_codec_channel_mode"
234 android:dialogTitle="@string/bluetooth_select_a2dp_codec_channel_mode_dialog_title"
235 android:entries="@array/bluetooth_a2dp_codec_channel_mode_titles"
236 android:entryValues="@array/bluetooth_a2dp_codec_channel_mode_values" />
237
238 <ListPreference
239 android:key="bluetooth_select_a2dp_ldac_playback_quality"
240 android:title="@string/bluetooth_select_a2dp_codec_ldac_playback_quality"
241 android:dialogTitle="@string/bluetooth_select_a2dp_codec_ldac_playback_quality_dialog_title"
242 android:entries="@array/bluetooth_a2dp_codec_ldac_playback_quality_titles"
243 android:entryValues="@array/bluetooth_a2dp_codec_ldac_playback_quality_values" />
244
Dianne Hackborn9244df42012-02-14 13:25:41 -0800245 </PreferenceCategory>
246
Dianne Hackborn34481b92012-05-07 17:52:07 -0700247 <PreferenceCategory android:key="debug_input_category"
248 android:title="@string/debug_input_category">
Dianne Hackborneddc4fe2011-07-01 18:56:09 -0700249
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700250 <SwitchPreference
Jeff Brownf4077002011-08-26 17:10:32 -0700251 android:key="show_touches"
252 android:title="@string/show_touches"
253 android:summary="@string/show_touches_summary"/>
254
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700255 <SwitchPreference
Dianne Hackborn34481b92012-05-07 17:52:07 -0700256 android:key="pointer_location"
257 android:title="@string/pointer_location"
258 android:summary="@string/pointer_location_summary"/>
259
260 </PreferenceCategory>
261
262 <PreferenceCategory android:key="debug_drawing_category"
263 android:title="@string/debug_drawing_category">
264
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700265 <SwitchPreference
Dianne Hackborn34481b92012-05-07 17:52:07 -0700266 android:key="show_screen_updates"
267 android:title="@string/show_screen_updates"
268 android:summary="@string/show_screen_updates_summary"/>
Romain Guyc1fa3e62012-04-27 15:27:54 -0700269
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700270 <SwitchPreference
Romain Guy6b24c452013-02-25 16:21:58 -0800271 android:key="debug_layout"
272 android:title="@string/debug_layout"
273 android:summary="@string/debug_layout_summary"/>
274
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700275 <SwitchPreference
Amith Yamasanidf1eda82013-08-07 20:14:44 -0700276 android:key="force_rtl_layout_all_locales"
277 android:title="@string/force_rtl_layout_all_locales"
278 android:summary="@string/force_rtl_layout_all_locales_summary"/>
279
Dianne Hackborneddc4fe2011-07-01 18:56:09 -0700280 <ListPreference
281 android:key="window_animation_scale"
282 android:title="@string/window_animation_scale_title"
Dianne Hackborneddc4fe2011-07-01 18:56:09 -0700283 android:entries="@array/window_animation_scale_entries"
284 android:entryValues="@array/window_animation_scale_values" />
285
286 <ListPreference
287 android:key="transition_animation_scale"
288 android:title="@string/transition_animation_scale_title"
Dianne Hackborneddc4fe2011-07-01 18:56:09 -0700289 android:entries="@array/transition_animation_scale_entries"
290 android:entryValues="@array/transition_animation_scale_values" />
291
Chet Haaseb29e78702012-02-01 15:10:12 -0800292 <ListPreference
293 android:key="animator_duration_scale"
294 android:title="@string/animator_duration_scale_title"
Chet Haaseb29e78702012-02-01 15:10:12 -0800295 android:entries="@array/animator_duration_scale_entries"
296 android:entryValues="@array/animator_duration_scale_values" />
297
Jeff Brownb2b54ee2012-08-29 02:33:06 -0700298 <ListPreference
299 android:key="overlay_display_devices"
300 android:title="@string/overlay_display_devices_title"
Jeff Brownb2b54ee2012-08-29 02:33:06 -0700301 android:entries="@array/overlay_display_devices_entries"
302 android:entryValues="@array/overlay_display_devices_values" />
303
Jason Monk449f9722016-04-05 15:45:27 -0400304 <com.android.settings.display.DensityPreference
305 android:key="density"
306 android:title="@string/developer_smallest_width" />
307
Dianne Hackborn34481b92012-05-07 17:52:07 -0700308 </PreferenceCategory>
309
Romain Guy6b24c452013-02-25 16:21:58 -0800310 <PreferenceCategory android:key="debug_hw_drawing_category"
311 android:title="@string/debug_hw_drawing_category">
312
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700313 <SwitchPreference
Romain Guy6b24c452013-02-25 16:21:58 -0800314 android:key="force_hw_ui"
315 android:title="@string/force_hw_ui"
316 android:summary="@string/force_hw_ui_summary"/>
317
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700318 <SwitchPreference
Romain Guy6b24c452013-02-25 16:21:58 -0800319 android:key="show_hw_screen_udpates"
320 android:title="@string/show_hw_screen_updates"
321 android:summary="@string/show_hw_screen_updates_summary"/>
322
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700323 <SwitchPreference
Romain Guy6b24c452013-02-25 16:21:58 -0800324 android:key="show_hw_layers_udpates"
325 android:title="@string/show_hw_layers_updates"
326 android:summary="@string/show_hw_layers_updates_summary"/>
327
Romain Guyeb90fc52013-05-03 17:38:38 -0700328 <ListPreference
329 android:key="debug_hw_overdraw"
330 android:title="@string/debug_hw_overdraw"
Romain Guyeb90fc52013-05-03 17:38:38 -0700331 android:entries="@array/debug_hw_overdraw_entries"
332 android:entryValues="@array/debug_hw_overdraw_values" />
Romain Guy6b24c452013-02-25 16:21:58 -0800333
334 <ListPreference
335 android:key="show_non_rect_clip"
336 android:title="@string/show_non_rect_clip"
Romain Guy6b24c452013-02-25 16:21:58 -0800337 android:entries="@array/show_non_rect_clip_entries"
338 android:entryValues="@array/show_non_rect_clip_values" />
339
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700340 <SwitchPreference
Romain Guy6b24c452013-02-25 16:21:58 -0800341 android:key="force_msaa"
342 android:title="@string/force_msaa"
343 android:summary="@string/force_msaa_summary"/>
344
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700345 <SwitchPreference
Romain Guy6b24c452013-02-25 16:21:58 -0800346 android:key="disable_overlays"
347 android:title="@string/disable_overlays"
348 android:summary="@string/disable_overlays_summary"/>
349
Alan Viverettefc0ab212013-10-02 16:36:33 -0700350 <ListPreference
351 android:entries="@array/simulate_color_space_entries"
352 android:entryValues="@array/simulate_color_space_values"
353 android:key="simulate_color_space"
Alan Viverettefc0ab212013-10-02 16:36:33 -0700354 android:summary="%s"
355 android:title="@string/simulate_color_space" />
356
Romain Guy6b24c452013-02-25 16:21:58 -0800357 </PreferenceCategory>
358
Lajos Molnar6b2f7c42014-03-28 09:48:58 -0700359 <PreferenceCategory android:key="media_category"
360 android:title="@string/media_category">
361
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700362 <SwitchPreference
Glenn Kastenca542342014-07-22 09:14:08 -0700363 android:key="usb_audio"
364 android:title="@string/usb_audio_disable_routing"
365 android:summary="@string/usb_audio_disable_routing_summary" />
366
Lajos Molnar6b2f7c42014-03-28 09:48:58 -0700367 </PreferenceCategory>
368
Dianne Hackborn34481b92012-05-07 17:52:07 -0700369 <PreferenceCategory android:key="debug_monitoring_category"
370 android:title="@string/debug_monitoring_category">
371
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700372 <SwitchPreference
Dianne Hackborn34481b92012-05-07 17:52:07 -0700373 android:key="strict_mode"
374 android:title="@string/strict_mode"
375 android:summary="@string/strict_mode_summary"/>
376
Romain Guy70618482013-01-07 11:20:49 -0800377 <ListPreference
Dianne Hackborn34481b92012-05-07 17:52:07 -0700378 android:key="track_frame_time"
379 android:title="@string/track_frame_time"
Romain Guy70618482013-01-07 11:20:49 -0800380 android:entries="@array/track_frame_time_entries"
381 android:entryValues="@array/track_frame_time_values" />
Dianne Hackborn34481b92012-05-07 17:52:07 -0700382
Dianne Hackborneddc4fe2011-07-01 18:56:09 -0700383 </PreferenceCategory>
384
385 <PreferenceCategory android:key="debug_applications_category"
386 android:title="@string/debug_applications_category">
387
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700388 <SwitchPreference
Dianne Hackborneddc4fe2011-07-01 18:56:09 -0700389 android:key="immediately_destroy_activities"
390 android:title="@string/immediately_destroy_activities"
391 android:summary="@string/immediately_destroy_activities_summary"/>
392
393 <ListPreference
394 android:key="app_process_limit"
395 android:title="@string/app_process_limit_title"
Dianne Hackborneddc4fe2011-07-01 18:56:09 -0700396 android:entries="@array/app_process_limit_entries"
397 android:entryValues="@array/app_process_limit_values" />
398
Dianne Hackborn4df06652016-02-23 13:27:29 -0800399 <!-- hiding for now.
Dianne Hackbornf467c0a2015-12-07 16:36:09 -0800400 <Preference
401 android:key="background_check"
402 android:title="@string/background_check_pref" />
Dianne Hackborn4df06652016-02-23 13:27:29 -0800403 -->
Dianne Hackbornf467c0a2015-12-07 16:36:09 -0800404
Fabrice Di Meglio88638732014-10-14 16:43:37 -0700405 <SwitchPreference
Dianne Hackbornd5119bd2011-08-02 15:08:04 -0700406 android:key="show_all_anrs"
407 android:title="@string/show_all_anrs"
408 android:summary="@string/show_all_anrs_summary"/>
409
Amith Yamasani50e32b02015-05-13 18:18:16 -0700410 <Preference
411 android:key="inactive_apps"
412 android:title="@string/inactive_apps_title" />
413
Todd Kennedy97162822015-08-07 14:39:08 -0700414 <SwitchPreference
415 android:key="force_allow_on_external"
416 android:title="@string/force_allow_on_external"
417 android:summary="@string/force_allow_on_external_summary"/>
418
Jorim Jaggib12e9ad2015-10-27 10:54:53 +0100419 <SwitchPreference
420 android:key="force_resizable_activities"
421 android:title="@string/force_resizable_activities"
422 android:summary="@string/force_resizable_activities_summary"/>
Makoto Onuki06517012016-07-08 09:17:25 -0700423
424 <Preference
425 android:key="reset_shortcut_manager_throttling"
426 android:title="@string/reset_shortcut_manager_throttling" />
Svetoslav Ganov43af40b2012-09-20 19:15:29 -0700427 </PreferenceCategory>
Svetoslav Ganovdecf36e2012-08-06 10:55:11 -0700428
Doris Ling3d9224f2016-12-12 16:20:22 -0800429 <PreferenceCategory
430 android:key="dashboard_tile_placeholder"
431 android:order="200"/>
432
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -0800433</PreferenceScreen>