The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1 | <?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 |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | 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" |
| 18 | android:title="@string/development_settings_title"> |
Dianne Hackborn | fd8c315 | 2012-07-13 14:26:23 -0700 | [diff] [blame] | 19 | <com.android.settings.BugreportPreference |
| 20 | android:key="bugreport" |
Dianne Hackborn | 2d803a3 | 2012-08-07 11:26:32 -0700 | [diff] [blame] | 21 | android:title="@*android:string/bugreport_title" |
| 22 | android:dialogTitle="@*android:string/bugreport_title" /> |
Dianne Hackborn | fd8c315 | 2012-07-13 14:26:23 -0700 | [diff] [blame] | 23 | |
Christopher Tate | fac0ea7 | 2011-08-12 17:22:41 -0700 | [diff] [blame] | 24 | <PreferenceScreen |
| 25 | android:key="local_backup_password" |
| 26 | android:title="@string/local_backup_password_title" |
| 27 | android:summary="@string/local_backup_password_summary_none" |
| 28 | android:persistent="false" > |
| 29 | <intent |
| 30 | android:action="android.settings.privacy.SET_FULL_BACKUP_PASSWORD" |
| 31 | android:targetPackage="com.android.settings" |
| 32 | android:targetClass="com.android.settings.SetFullBackupPassword" /> |
| 33 | </PreferenceScreen> |
| 34 | |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 35 | <CheckBoxPreference |
| 36 | android:key="keep_screen_on" |
| 37 | android:title="@string/keep_screen_on" |
| 38 | android:summary="@string/keep_screen_on_summary"/> |
| 39 | |
| 40 | <ListPreference |
| 41 | android:key="hdcp_checking" |
| 42 | android:title="@string/hdcp_checking_title" |
| 43 | android:dialogTitle="@string/hdcp_checking_dialog_title" |
| 44 | android:entries="@array/hdcp_checking_titles" |
| 45 | android:entryValues="@array/hdcp_checking_values" /> |
| 46 | |
Jeff Sharkey | caf1561 | 2012-05-14 20:51:05 -0700 | [diff] [blame] | 47 | <CheckBoxPreference |
| 48 | android:key="enforce_read_external" |
| 49 | android:title="@string/enforce_read_external_title" |
| 50 | android:summary="@string/enforce_read_external_summary" /> |
| 51 | |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 52 | <PreferenceCategory android:key="debug_debugging_category" |
| 53 | android:title="@string/debug_debugging_category"> |
| 54 | |
| 55 | <CheckBoxPreference |
| 56 | android:key="enable_adb" |
| 57 | android:title="@string/enable_adb" |
| 58 | android:summary="@string/enable_adb_summary"/> |
| 59 | |
Benoit Goby | 0761ffc | 2012-12-21 16:43:20 -0800 | [diff] [blame] | 60 | <Preference android:key="clear_adb_keys" |
| 61 | android:title="@string/clear_adb_keys" /> |
| 62 | |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 63 | <CheckBoxPreference |
Jeff Sharkey | d390b70 | 2013-03-05 23:31:45 -0800 | [diff] [blame] | 64 | android:key="enable_terminal" |
| 65 | android:title="@string/enable_terminal_title" |
| 66 | android:summary="@string/enable_terminal_summary" /> |
| 67 | |
| 68 | <CheckBoxPreference |
Dianne Hackborn | 2d803a3 | 2012-08-07 11:26:32 -0700 | [diff] [blame] | 69 | android:key="bugreport_in_power" |
| 70 | android:title="@string/bugreport_in_power" |
| 71 | android:summary="@string/bugreport_in_power_summary"/> |
| 72 | |
| 73 | <CheckBoxPreference |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 74 | android:key="allow_mock_location" |
| 75 | android:title="@string/allow_mock_location" |
| 76 | android:summary="@string/allow_mock_location_summary"/> |
| 77 | |
| 78 | <PreferenceScreen android:key="debug_app" |
| 79 | android:title="@string/debug_app" /> |
| 80 | |
| 81 | <CheckBoxPreference |
| 82 | android:key="wait_for_debugger" |
| 83 | android:title="@string/wait_for_debugger" |
| 84 | android:summary="@string/wait_for_debugger_summary"/> |
| 85 | |
rich cannings | f042114 | 2012-09-25 16:20:36 -0700 | [diff] [blame] | 86 | <CheckBoxPreference |
| 87 | android:key="verify_apps_over_usb" |
| 88 | android:title="@string/verify_apps_over_usb_title" |
| 89 | android:summary="@string/verify_apps_over_usb_summary"/> |
| 90 | |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 91 | </PreferenceCategory> |
| 92 | |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 93 | <PreferenceCategory android:key="debug_input_category" |
| 94 | android:title="@string/debug_input_category"> |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 95 | |
| 96 | <CheckBoxPreference |
Jeff Brown | f407700 | 2011-08-26 17:10:32 -0700 | [diff] [blame] | 97 | android:key="show_touches" |
| 98 | android:title="@string/show_touches" |
| 99 | android:summary="@string/show_touches_summary"/> |
| 100 | |
| 101 | <CheckBoxPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 102 | android:key="pointer_location" |
| 103 | android:title="@string/pointer_location" |
| 104 | android:summary="@string/pointer_location_summary"/> |
| 105 | |
| 106 | </PreferenceCategory> |
| 107 | |
| 108 | <PreferenceCategory android:key="debug_drawing_category" |
| 109 | android:title="@string/debug_drawing_category"> |
| 110 | |
| 111 | <CheckBoxPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 112 | android:key="show_screen_updates" |
| 113 | android:title="@string/show_screen_updates" |
| 114 | android:summary="@string/show_screen_updates_summary"/> |
Romain Guy | c1fa3e6 | 2012-04-27 15:27:54 -0700 | [diff] [blame] | 115 | |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 116 | <CheckBoxPreference |
| 117 | android:key="debug_layout" |
| 118 | android:title="@string/debug_layout" |
| 119 | android:summary="@string/debug_layout_summary"/> |
| 120 | |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 121 | <ListPreference |
| 122 | android:key="window_animation_scale" |
| 123 | android:title="@string/window_animation_scale_title" |
| 124 | android:persistent="false" |
| 125 | android:entries="@array/window_animation_scale_entries" |
| 126 | android:entryValues="@array/window_animation_scale_values" /> |
| 127 | |
| 128 | <ListPreference |
| 129 | android:key="transition_animation_scale" |
| 130 | android:title="@string/transition_animation_scale_title" |
| 131 | android:persistent="false" |
| 132 | android:entries="@array/transition_animation_scale_entries" |
| 133 | android:entryValues="@array/transition_animation_scale_values" /> |
| 134 | |
Chet Haase | b29e7870 | 2012-02-01 15:10:12 -0800 | [diff] [blame] | 135 | <ListPreference |
| 136 | android:key="animator_duration_scale" |
| 137 | android:title="@string/animator_duration_scale_title" |
| 138 | android:persistent="false" |
| 139 | android:entries="@array/animator_duration_scale_entries" |
| 140 | android:entryValues="@array/animator_duration_scale_values" /> |
| 141 | |
Jeff Brown | b2b54ee | 2012-08-29 02:33:06 -0700 | [diff] [blame] | 142 | <ListPreference |
| 143 | android:key="overlay_display_devices" |
| 144 | android:title="@string/overlay_display_devices_title" |
| 145 | android:persistent="false" |
| 146 | android:entries="@array/overlay_display_devices_entries" |
| 147 | android:entryValues="@array/overlay_display_devices_values" /> |
| 148 | |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 149 | </PreferenceCategory> |
| 150 | |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 151 | <PreferenceCategory android:key="debug_hw_drawing_category" |
| 152 | android:title="@string/debug_hw_drawing_category"> |
| 153 | |
| 154 | <CheckBoxPreference |
| 155 | android:key="force_hw_ui" |
| 156 | android:title="@string/force_hw_ui" |
| 157 | android:summary="@string/force_hw_ui_summary"/> |
| 158 | |
| 159 | <CheckBoxPreference |
| 160 | android:key="show_hw_screen_udpates" |
| 161 | android:title="@string/show_hw_screen_updates" |
| 162 | android:summary="@string/show_hw_screen_updates_summary"/> |
| 163 | |
| 164 | <CheckBoxPreference |
| 165 | android:key="show_hw_layers_udpates" |
| 166 | android:title="@string/show_hw_layers_updates" |
| 167 | android:summary="@string/show_hw_layers_updates_summary"/> |
| 168 | |
Romain Guy | eb90fc5 | 2013-05-03 17:38:38 -0700 | [diff] [blame^] | 169 | <ListPreference |
| 170 | android:key="debug_hw_overdraw" |
| 171 | android:title="@string/debug_hw_overdraw" |
| 172 | android:persistent="false" |
| 173 | android:entries="@array/debug_hw_overdraw_entries" |
| 174 | android:entryValues="@array/debug_hw_overdraw_values" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 175 | |
| 176 | <ListPreference |
| 177 | android:key="show_non_rect_clip" |
| 178 | android:title="@string/show_non_rect_clip" |
| 179 | android:persistent="false" |
| 180 | android:entries="@array/show_non_rect_clip_entries" |
| 181 | android:entryValues="@array/show_non_rect_clip_values" /> |
| 182 | |
| 183 | <CheckBoxPreference |
| 184 | android:key="force_msaa" |
| 185 | android:title="@string/force_msaa" |
| 186 | android:summary="@string/force_msaa_summary"/> |
| 187 | |
| 188 | <CheckBoxPreference |
| 189 | android:key="disable_overlays" |
| 190 | android:title="@string/disable_overlays" |
| 191 | android:summary="@string/disable_overlays_summary"/> |
| 192 | |
| 193 | </PreferenceCategory> |
| 194 | |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 195 | <PreferenceCategory android:key="debug_monitoring_category" |
| 196 | android:title="@string/debug_monitoring_category"> |
| 197 | |
| 198 | <CheckBoxPreference |
| 199 | android:key="strict_mode" |
| 200 | android:title="@string/strict_mode" |
| 201 | android:summary="@string/strict_mode_summary"/> |
| 202 | |
| 203 | <CheckBoxPreference |
| 204 | android:key="show_cpu_usage" |
| 205 | android:title="@string/show_cpu_usage" |
| 206 | android:summary="@string/show_cpu_usage_summary"/> |
| 207 | |
Romain Guy | 7061848 | 2013-01-07 11:20:49 -0800 | [diff] [blame] | 208 | <ListPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 209 | android:key="track_frame_time" |
| 210 | android:title="@string/track_frame_time" |
Romain Guy | 7061848 | 2013-01-07 11:20:49 -0800 | [diff] [blame] | 211 | android:persistent="false" |
| 212 | android:entries="@array/track_frame_time_entries" |
| 213 | android:entryValues="@array/track_frame_time_values" /> |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 214 | |
Romain Guy | 025cafc | 2012-10-18 17:37:43 -0700 | [diff] [blame] | 215 | <ListPreference |
| 216 | android:key="enable_opengl_traces" |
| 217 | android:title="@string/enable_opengl_traces_title" |
| 218 | android:persistent="false" |
| 219 | android:entries="@array/enable_opengl_traces_entries" |
| 220 | android:entryValues="@array/enable_opengl_traces_values" /> |
| 221 | |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 222 | </PreferenceCategory> |
| 223 | |
| 224 | <PreferenceCategory android:key="debug_applications_category" |
| 225 | android:title="@string/debug_applications_category"> |
| 226 | |
| 227 | <CheckBoxPreference |
| 228 | android:key="immediately_destroy_activities" |
| 229 | android:title="@string/immediately_destroy_activities" |
| 230 | android:summary="@string/immediately_destroy_activities_summary"/> |
| 231 | |
| 232 | <ListPreference |
| 233 | android:key="app_process_limit" |
| 234 | android:title="@string/app_process_limit_title" |
| 235 | android:persistent="false" |
| 236 | android:entries="@array/app_process_limit_entries" |
| 237 | android:entryValues="@array/app_process_limit_values" /> |
| 238 | |
Dianne Hackborn | d5119bd | 2011-08-02 15:08:04 -0700 | [diff] [blame] | 239 | <CheckBoxPreference |
| 240 | android:key="show_all_anrs" |
| 241 | android:title="@string/show_all_anrs" |
| 242 | android:summary="@string/show_all_anrs_summary"/> |
| 243 | |
Jared Duke | 8dc6d08 | 2013-03-15 15:13:41 -0700 | [diff] [blame] | 244 | <CheckBoxPreference |
| 245 | android:key="experimental_webview" |
| 246 | android:title="@string/experimental_webview" |
| 247 | android:summary="@string/experimental_webview_summary"/> |
| 248 | |
Svetoslav Ganov | 43af40b | 2012-09-20 19:15:29 -0700 | [diff] [blame] | 249 | </PreferenceCategory> |
Svetoslav Ganov | decf36e | 2012-08-06 10:55:11 -0700 | [diff] [blame] | 250 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 251 | </PreferenceScreen> |