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 |
Selim Gurun | 029c13e | 2014-05-05 16:02:41 -0700 | [diff] [blame] | 7 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 8 | http://www.apache.org/licenses/LICENSE-2.0 |
Selim Gurun | 029c13e | 2014-05-05 16:02:41 -0700 | [diff] [blame] | 9 | |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 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" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 18 | xmlns:settings="http://schemas.android.com/apk/res-auto" |
| 19 | android:key="development_prefs_screen" |
| 20 | android:title="@string/development_settings_title"> |
jeffreyhuang | c57f18d | 2017-10-20 14:10:25 -0700 | [diff] [blame] | 21 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 22 | <PreferenceCategory |
| 23 | android:key="debug_misc_category" |
| 24 | android:order="100"> |
jeffreyhuang | c57f18d | 2017-10-20 14:10:25 -0700 | [diff] [blame] | 25 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 26 | <Preference |
| 27 | android:key="memory" |
| 28 | android:icon="@drawable/ic_settings_memory" |
| 29 | android:title="@string/memory_settings_title" |
| 30 | android:summary="@string/summary_placeholder" |
| 31 | android:fragment="com.android.settings.applications.ProcessStatsSummary" /> |
| 32 | |
| 33 | <com.android.settings.BugreportPreference |
Dianne Hackborn | fd8c315 | 2012-07-13 14:26:23 -0700 | [diff] [blame] | 34 | android:key="bugreport" |
Dianne Hackborn | 2d803a3 | 2012-08-07 11:26:32 -0700 | [diff] [blame] | 35 | android:title="@*android:string/bugreport_title" |
| 36 | android:dialogTitle="@*android:string/bugreport_title" /> |
Dianne Hackborn | fd8c315 | 2012-07-13 14:26:23 -0700 | [diff] [blame] | 37 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 38 | <Preference |
Kweku Adams | afd71d1 | 2019-03-21 12:49:38 -0700 | [diff] [blame] | 39 | android:key="system_server_heap_dump" |
| 40 | android:title="@string/capture_system_heap_dump_title" /> |
| 41 | |
| 42 | <Preference |
Christopher Tate | fac0ea7 | 2011-08-12 17:22:41 -0700 | [diff] [blame] | 43 | android:key="local_backup_password" |
| 44 | android:title="@string/local_backup_password_title" |
| 45 | android:summary="@string/local_backup_password_summary_none" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 46 | android:persistent="false"> |
| 47 | <intent |
Christopher Tate | fac0ea7 | 2011-08-12 17:22:41 -0700 | [diff] [blame] | 48 | android:action="android.settings.privacy.SET_FULL_BACKUP_PASSWORD" |
| 49 | android:targetPackage="com.android.settings" |
| 50 | android:targetClass="com.android.settings.SetFullBackupPassword" /> |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 51 | </Preference> |
Christopher Tate | fac0ea7 | 2011-08-12 17:22:41 -0700 | [diff] [blame] | 52 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 53 | <com.android.settingslib.RestrictedSwitchPreference |
| 54 | android:key="keep_screen_on" |
| 55 | android:title="@string/keep_screen_on" |
| 56 | android:summary="@string/keep_screen_on_summary" |
| 57 | settings:useAdditionalSummary="true" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 58 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 59 | <ListPreference |
| 60 | android:key="hdcp_checking" |
| 61 | android:title="@string/hdcp_checking_title" |
| 62 | android:dialogTitle="@string/hdcp_checking_dialog_title" |
| 63 | android:entries="@array/hdcp_checking_titles" |
| 64 | android:entryValues="@array/hdcp_checking_values" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 65 | |
Ajay Panicker | fc4d53c | 2018-11-30 15:26:02 -0800 | [diff] [blame] | 66 | <ListPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 67 | android:key="bt_hci_snoop_log" |
| 68 | android:title="@string/bt_hci_snoop_log" |
Ajay Panicker | fc4d53c | 2018-11-30 15:26:02 -0800 | [diff] [blame] | 69 | android:dialogTitle="@string/bt_hci_snoop_log_summary" |
| 70 | android:entries="@array/bt_hci_snoop_log_entries" |
| 71 | android:entryValues="@array/bt_hci_snoop_log_values" /> |
Zhihai Xu | 84bbb54 | 2013-07-26 13:33:16 -0700 | [diff] [blame] | 72 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 73 | <com.android.settingslib.RestrictedSwitchPreference |
| 74 | android:key="oem_unlock_enable" |
| 75 | android:title="@string/oem_unlock_enable" |
| 76 | android:summary="@string/oem_unlock_enable_summary" |
| 77 | settings:useAdditionalSummary="true" /> |
Andres Morales | ce249fe | 2014-07-07 16:58:16 -0700 | [diff] [blame] | 78 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 79 | <Preference |
| 80 | android:key="running_apps" |
| 81 | android:title="@string/runningservices_settings_title" |
| 82 | android:summary="@string/runningservices_settings_summary" |
| 83 | android:fragment="com.android.settings.applications.RunningServices" /> |
Jason Monk | 5dc70b1 | 2015-03-25 11:03:59 -0400 | [diff] [blame] | 84 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 85 | <Preference |
| 86 | android:key="convert_to_file_encryption" |
| 87 | android:title="@string/convert_to_file_encryption" |
| 88 | android:summary="@string/convert_to_file_encryption_enabled" |
| 89 | android:fragment="com.android.settings.applications.ConvertToFbe" /> |
Paul Lawrence | acbac8c | 2015-11-02 12:42:42 -0800 | [diff] [blame] | 90 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 91 | <com.android.settings.development.ColorModePreference |
| 92 | android:key="picture_color_mode" |
| 93 | android:title="@string/picture_color_mode" |
| 94 | android:summary="@string/picture_color_mode_desc" /> |
Jason Monk | 16a8e8d | 2015-09-23 16:08:13 -0400 | [diff] [blame] | 95 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 96 | <Preference android:key="select_webview_provider" |
| 97 | android:title="@string/select_webview_provider_title" |
| 98 | android:dialogTitle="@string/select_webview_provider_dialog_title" |
| 99 | android:fragment="com.android.settings.webview.WebViewAppPicker" /> |
Gustav Sennton | 0d54bbf | 2015-10-30 18:55:32 +0000 | [diff] [blame] | 100 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 101 | <SwitchPreference |
| 102 | android:key="color_temperature" |
| 103 | android:title="@string/color_temperature" |
| 104 | android:summary="@string/color_temperature_desc" /> |
Steve Pfetsch | b3fef37 | 2016-01-13 17:07:35 -0800 | [diff] [blame] | 105 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 106 | <SwitchPreference |
| 107 | android:key="ota_disable_automatic_update" |
Tao Bao | 8271220 | 2018-03-22 18:47:57 -0700 | [diff] [blame] | 108 | android:title="@string/ota_disable_automatic_update" |
| 109 | android:summary="@string/ota_disable_automatic_update_summary" /> |
Tao Bao | 45a2c16 | 2016-02-15 20:03:22 -0800 | [diff] [blame] | 110 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 111 | <Preference |
| 112 | android:key="demo_mode" |
| 113 | android:title="@string/demo_mode"> |
| 114 | <intent android:action="com.android.settings.action.DEMO_MODE" /> |
| 115 | </Preference> |
Jason Monk | fb0d8fb | 2016-04-12 13:09:13 -0400 | [diff] [blame] | 116 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 117 | <Preference |
| 118 | android:key="quick_settings_tiles" |
| 119 | android:title="@string/quick_settings_developer_tiles" |
Fan Zhang | d3b8487 | 2019-03-15 14:11:39 -0700 | [diff] [blame] | 120 | android:fragment="com.android.settings.development.qstile.DevelopmentTileConfigFragment" |
| 121 | settings:searchable="false" /> |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 122 | </PreferenceCategory> |
Sunny Goyal | c960751 | 2017-02-06 15:19:00 -0800 | [diff] [blame] | 123 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 124 | <PreferenceCategory |
| 125 | android:key="debug_debugging_category" |
| 126 | android:title="@string/debug_debugging_category" |
| 127 | android:order="200"> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 128 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 129 | <SwitchPreference |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 130 | android:key="enable_adb" |
| 131 | android:title="@string/enable_adb" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 132 | android:summary="@string/enable_adb_summary" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 133 | |
Benoit Goby | 0761ffc | 2012-12-21 16:43:20 -0800 | [diff] [blame] | 134 | <Preference android:key="clear_adb_keys" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 135 | android:title="@string/clear_adb_keys" /> |
Benoit Goby | 0761ffc | 2012-12-21 16:43:20 -0800 | [diff] [blame] | 136 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 137 | <SwitchPreference |
Jeff Sharkey | d390b70 | 2013-03-05 23:31:45 -0800 | [diff] [blame] | 138 | android:key="enable_terminal" |
| 139 | android:title="@string/enable_terminal_title" |
| 140 | android:summary="@string/enable_terminal_summary" /> |
| 141 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 142 | <SwitchPreference |
Dianne Hackborn | 2d803a3 | 2012-08-07 11:26:32 -0700 | [diff] [blame] | 143 | android:key="bugreport_in_power" |
| 144 | android:title="@string/bugreport_in_power" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 145 | android:summary="@string/bugreport_in_power_summary" /> |
Dianne Hackborn | 2d803a3 | 2012-08-07 11:26:32 -0700 | [diff] [blame] | 146 | |
Kweku Adams | afd71d1 | 2019-03-21 12:49:38 -0700 | [diff] [blame] | 147 | <SwitchPreference |
| 148 | android:key="automatic_system_server_heap_dumps" |
| 149 | android:title="@string/automatic_system_heap_dump_title" |
| 150 | android:summary="@string/automatic_system_heap_dump_summary" /> |
| 151 | |
Fan Zhang | 1c118b5 | 2016-12-09 13:04:24 -0800 | [diff] [blame] | 152 | <Preference android:key="mock_location_app" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 153 | android:title="@string/mock_location_app" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 154 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 155 | <SwitchPreference |
gomo | e17c940 | 2017-12-13 03:44:09 -0800 | [diff] [blame] | 156 | android:key="enable_gnss_raw_meas_full_tracking" |
| 157 | android:title="@string/enable_gnss_raw_meas_full_tracking" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 158 | android:summary="@string/enable_gnss_raw_meas_full_tracking_summary" /> |
gomo | e17c940 | 2017-12-13 03:44:09 -0800 | [diff] [blame] | 159 | |
| 160 | <SwitchPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 161 | android:key="debug_view_attributes" |
| 162 | android:title="@string/debug_view_attributes" /> |
Jon Miranda | 0b65294 | 2014-08-12 09:08:29 -0700 | [diff] [blame] | 163 | |
Fan Zhang | 1c118b5 | 2016-12-09 13:04:24 -0800 | [diff] [blame] | 164 | <Preference android:key="debug_app" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 165 | android:title="@string/debug_app" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 166 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 167 | <SwitchPreference |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 168 | android:key="wait_for_debugger" |
| 169 | android:title="@string/wait_for_debugger" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 170 | android:summary="@string/wait_for_debugger_summary" /> |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 171 | |
Pavel Grafov | 5d567c4 | 2017-04-26 11:54:13 +0100 | [diff] [blame] | 172 | <com.android.settingslib.RestrictedSwitchPreference |
rich cannings | f042114 | 2012-09-25 16:20:36 -0700 | [diff] [blame] | 173 | android:key="verify_apps_over_usb" |
| 174 | android:title="@string/verify_apps_over_usb_title" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 175 | android:summary="@string/verify_apps_over_usb_summary" /> |
rich cannings | f042114 | 2012-09-25 16:20:36 -0700 | [diff] [blame] | 176 | |
Alex Buynytskyy | 787a92c | 2019-01-25 16:22:00 -0800 | [diff] [blame] | 177 | <SwitchPreference |
| 178 | android:key="art_verifier_for_debuggable" |
| 179 | android:title="@string/art_verifier_for_debuggable_title" |
| 180 | android:summary="@string/art_verifier_for_debuggable_summary" /> |
| 181 | |
Lorenzo Colitti | 8fc9341 | 2015-03-16 23:45:55 +0900 | [diff] [blame] | 182 | <ListPreference |
| 183 | android:key="select_logd_size" |
| 184 | android:title="@string/select_logd_size_title" |
| 185 | android:dialogTitle="@string/select_logd_size_dialog_title" |
| 186 | android:entries="@array/select_logd_size_titles" |
| 187 | android:entryValues="@array/select_logd_size_values" /> |
| 188 | |
Mark Salyzyn | c8b1c3e | 2016-06-03 10:18:23 -0700 | [diff] [blame] | 189 | <ListPreference |
| 190 | android:key="select_logpersist" |
| 191 | android:title="@string/select_logpersist_title" |
| 192 | android:dialogTitle="@string/select_logpersist_dialog_title" |
| 193 | android:entries="@array/select_logpersist_titles" |
| 194 | android:entryValues="@array/select_logpersist_values" /> |
| 195 | |
Youhan Wang | 607ffe6 | 2017-02-09 09:50:39 -0800 | [diff] [blame] | 196 | <SwitchPreference |
Emilian Peev | 6530b21 | 2017-09-06 16:47:08 +0100 | [diff] [blame] | 197 | android:key="camera_laser_sensor_switch" |
| 198 | android:title="@string/camera_laser_sensor_switch" /> |
| 199 | |
Fan Zhang | 75cd1d2 | 2017-08-15 17:18:10 -0700 | [diff] [blame] | 200 | <Preference |
| 201 | android:key="feature_flags_dashboard" |
| 202 | android:title="@string/feature_flags_dashboard_title" |
Fan Zhang | a79c377 | 2018-08-14 16:25:54 -0700 | [diff] [blame] | 203 | android:fragment="com.android.settings.development.featureflags.FeatureFlagsDashboard" |
| 204 | settings:searchable="false" /> |
Fan Zhang | 75cd1d2 | 2017-08-15 17:18:10 -0700 | [diff] [blame] | 205 | |
Cody Northrop | 4e7f57a | 2017-10-25 14:07:48 -0600 | [diff] [blame] | 206 | <SwitchPreference |
| 207 | android:key="enable_gpu_debug_layers" |
| 208 | android:title="@string/enable_gpu_debug_layers" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 209 | android:summary="@string/enable_gpu_debug_layers_summary" /> |
Cody Northrop | 4e7f57a | 2017-10-25 14:07:48 -0600 | [diff] [blame] | 210 | |
Yiwei Zhang | c81a03b | 2018-12-28 11:38:11 +0800 | [diff] [blame] | 211 | <Preference |
Yiwei Zhang | bf854fc | 2019-01-24 14:04:58 -0800 | [diff] [blame] | 212 | android:key="game_driver_dashboard" |
| 213 | android:title="@string/game_driver_dashboard_title" |
| 214 | android:summary="@string/game_driver_dashboard_summary" |
| 215 | android:fragment="com.android.settings.development.gamedriver.GameDriverDashboard" |
Yiwei Zhang | 83c030f | 2018-12-29 08:52:31 +0800 | [diff] [blame] | 216 | settings:searchable="false" /> |
Yiwei Zhang | c81a03b | 2018-12-28 11:38:11 +0800 | [diff] [blame] | 217 | |
Andrei Onea | 486fd49 | 2019-09-26 14:44:49 +0100 | [diff] [blame] | 218 | <Preference |
| 219 | android:key="platform_compat_dashboard" |
| 220 | android:title="@string/platform_compat_dashboard_title" |
| 221 | android:summary="@string/platform_compat_dashboard_summary" |
| 222 | android:fragment="com.android.settings.development.compat.PlatformCompatDashboard" |
| 223 | /> |
| 224 | |
Lorenzo Colitti | 8fc9341 | 2015-03-16 23:45:55 +0900 | [diff] [blame] | 225 | </PreferenceCategory> |
| 226 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 227 | <PreferenceCategory |
| 228 | android:key="dashboard_tile_placeholder" |
| 229 | android:order="300" /> |
| 230 | |
| 231 | <PreferenceCategory |
| 232 | android:key="debug_networking_category" |
| 233 | android:title="@string/debug_networking_category" |
| 234 | android:order="400"> |
Lorenzo Colitti | 8fc9341 | 2015-03-16 23:45:55 +0900 | [diff] [blame] | 235 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 236 | <SwitchPreference |
Chong Zhang | 6c60738 | 2013-06-06 12:42:24 -0700 | [diff] [blame] | 237 | android:key="wifi_display_certification" |
| 238 | android:title="@string/wifi_display_certification" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 239 | android:summary="@string/wifi_display_certification_summary" /> |
vandwalle | c9a6698 | 2014-05-21 15:21:16 -0700 | [diff] [blame] | 240 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 241 | <SwitchPreference |
vandwalle | c9a6698 | 2014-05-21 15:21:16 -0700 | [diff] [blame] | 242 | android:key="wifi_verbose_logging" |
Michael Bestas | 4566fc2 | 2014-11-24 01:52:38 +0200 | [diff] [blame] | 243 | android:title="@string/wifi_verbose_logging" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 244 | android:summary="@string/wifi_verbose_logging_summary" /> |
vandwalle | c9a6698 | 2014-05-21 15:21:16 -0700 | [diff] [blame] | 245 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 246 | <SwitchPreference |
Roshan Pius | 260e79e | 2019-05-24 09:19:12 -0700 | [diff] [blame] | 247 | android:key="wifi_scan_throttling" |
| 248 | android:title="@string/wifi_scan_throttling" |
| 249 | android:summary="@string/wifi_scan_throttling_summary" /> |
| 250 | |
| 251 | <SwitchPreference |
Erik Kline | 54861e1 | 2015-04-30 12:58:08 +0900 | [diff] [blame] | 252 | android:key="mobile_data_always_on" |
| 253 | android:title="@string/mobile_data_always_on" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 254 | android:summary="@string/mobile_data_always_on_summary" /> |
Erik Kline | 54861e1 | 2015-04-30 12:58:08 +0900 | [diff] [blame] | 255 | |
Lorenzo Colitti | 03c4a74 | 2017-07-05 00:29:44 +0900 | [diff] [blame] | 256 | <SwitchPreference |
| 257 | android:key="tethering_hardware_offload" |
| 258 | android:title="@string/tethering_hardware_offload" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 259 | android:summary="@string/tethering_hardware_offload_summary" /> |
Lorenzo Colitti | 03c4a74 | 2017-07-05 00:29:44 +0900 | [diff] [blame] | 260 | |
Jerry Zhang | 5024717 | 2018-02-12 18:26:15 -0800 | [diff] [blame] | 261 | <Preference |
| 262 | android:key="default_usb_configuration" |
| 263 | android:fragment="com.android.settings.connecteddevice.usb.UsbDefaultFragment" |
| 264 | android:icon="@drawable/ic_usb" |
| 265 | android:title="@string/usb_default_label"/> |
Mike Lockwood | 3f6ef34 | 2014-09-22 12:15:24 -0700 | [diff] [blame] | 266 | |
Andre Eisenbach | 591c6c4 | 2016-02-08 15:40:23 -0800 | [diff] [blame] | 267 | <SwitchPreference |
Jack He | 19ba320 | 2017-05-31 18:37:28 -0700 | [diff] [blame] | 268 | android:key="bluetooth_show_devices_without_names" |
| 269 | android:title="@string/bluetooth_show_devices_without_names" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 270 | android:summary="@string/bluetooth_show_devices_without_names_summary" /> |
Jack He | 19ba320 | 2017-05-31 18:37:28 -0700 | [diff] [blame] | 271 | |
| 272 | <SwitchPreference |
Andre Eisenbach | 591c6c4 | 2016-02-08 15:40:23 -0800 | [diff] [blame] | 273 | android:key="bluetooth_disable_absolute_volume" |
| 274 | android:title="@string/bluetooth_disable_absolute_volume" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 275 | android:summary="@string/bluetooth_disable_absolute_volume_summary" /> |
Pavlin Radoslavov | c65956e | 2017-01-05 10:52:21 -0800 | [diff] [blame] | 276 | |
Chienyuan | ea14ef8 | 2018-05-16 20:52:00 +0800 | [diff] [blame] | 277 | <SwitchPreference |
| 278 | android:key="bluetooth_disable_a2dp_hw_offload" |
| 279 | android:title="@string/bluetooth_disable_a2dp_hw_offload" /> |
| 280 | |
Pavlin Radoslavov | c65956e | 2017-01-05 10:52:21 -0800 | [diff] [blame] | 281 | <ListPreference |
Ajay Panicker | da2723a | 2017-03-20 11:34:54 -0700 | [diff] [blame] | 282 | android:key="bluetooth_select_avrcp_version" |
| 283 | android:title="@string/bluetooth_select_avrcp_version_string" |
| 284 | android:dialogTitle="@string/bluetooth_select_avrcp_version_dialog_title" |
| 285 | android:entries="@array/bluetooth_avrcp_versions" |
| 286 | android:entryValues="@array/bluetooth_avrcp_version_values" /> |
| 287 | |
| 288 | <ListPreference |
Pavlin Radoslavov | c65956e | 2017-01-05 10:52:21 -0800 | [diff] [blame] | 289 | android:key="bluetooth_select_a2dp_codec" |
| 290 | android:title="@string/bluetooth_select_a2dp_codec_type" |
| 291 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_type_dialog_title" |
| 292 | android:entries="@array/bluetooth_a2dp_codec_titles" |
| 293 | android:entryValues="@array/bluetooth_a2dp_codec_values" /> |
| 294 | |
| 295 | <ListPreference |
| 296 | android:key="bluetooth_select_a2dp_sample_rate" |
| 297 | android:title="@string/bluetooth_select_a2dp_codec_sample_rate" |
| 298 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_sample_rate_dialog_title" |
| 299 | android:entries="@array/bluetooth_a2dp_codec_sample_rate_titles" |
| 300 | android:entryValues="@array/bluetooth_a2dp_codec_sample_rate_values" /> |
| 301 | |
| 302 | <ListPreference |
| 303 | android:key="bluetooth_select_a2dp_bits_per_sample" |
| 304 | android:title="@string/bluetooth_select_a2dp_codec_bits_per_sample" |
| 305 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_bits_per_sample_dialog_title" |
| 306 | android:entries="@array/bluetooth_a2dp_codec_bits_per_sample_titles" |
| 307 | android:entryValues="@array/bluetooth_a2dp_codec_bits_per_sample_values" /> |
| 308 | |
| 309 | <ListPreference |
| 310 | android:key="bluetooth_select_a2dp_channel_mode" |
| 311 | android:title="@string/bluetooth_select_a2dp_codec_channel_mode" |
| 312 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_channel_mode_dialog_title" |
| 313 | android:entries="@array/bluetooth_a2dp_codec_channel_mode_titles" |
| 314 | android:entryValues="@array/bluetooth_a2dp_codec_channel_mode_values" /> |
| 315 | |
| 316 | <ListPreference |
| 317 | android:key="bluetooth_select_a2dp_ldac_playback_quality" |
| 318 | android:title="@string/bluetooth_select_a2dp_codec_ldac_playback_quality" |
| 319 | android:dialogTitle="@string/bluetooth_select_a2dp_codec_ldac_playback_quality_dialog_title" |
| 320 | android:entries="@array/bluetooth_a2dp_codec_ldac_playback_quality_titles" |
| 321 | android:entryValues="@array/bluetooth_a2dp_codec_ldac_playback_quality_values" /> |
| 322 | |
Hansong Zhang | b2730b7 | 2018-01-04 16:38:15 -0800 | [diff] [blame] | 323 | <ListPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 324 | android:key="bluetooth_max_connected_audio_devices" |
| 325 | android:title="@string/bluetooth_max_connected_audio_devices_string" |
| 326 | android:dialogTitle="@string/bluetooth_max_connected_audio_devices_dialog_title" |
| 327 | android:entries="@array/bluetooth_max_connected_audio_devices" |
| 328 | android:entryValues="@array/bluetooth_max_connected_audio_devices_values" /> |
Hansong Zhang | b2730b7 | 2018-01-04 16:38:15 -0800 | [diff] [blame] | 329 | |
Dianne Hackborn | 9244df4 | 2012-02-14 13:25:41 -0800 | [diff] [blame] | 330 | </PreferenceCategory> |
| 331 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 332 | <PreferenceCategory |
| 333 | android:key="debug_input_category" |
| 334 | android:title="@string/debug_input_category" |
| 335 | android:order="500"> |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 336 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 337 | <SwitchPreference |
Jeff Brown | f407700 | 2011-08-26 17:10:32 -0700 | [diff] [blame] | 338 | android:key="show_touches" |
| 339 | android:title="@string/show_touches" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 340 | android:summary="@string/show_touches_summary" /> |
Jeff Brown | f407700 | 2011-08-26 17:10:32 -0700 | [diff] [blame] | 341 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 342 | <SwitchPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 343 | android:key="pointer_location" |
| 344 | android:title="@string/pointer_location" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 345 | android:summary="@string/pointer_location_summary" /> |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 346 | |
| 347 | </PreferenceCategory> |
| 348 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 349 | <PreferenceCategory |
| 350 | android:key="debug_drawing_category" |
| 351 | android:title="@string/debug_drawing_category" |
| 352 | android:order="600"> |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 353 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 354 | <SwitchPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 355 | android:key="show_screen_updates" |
| 356 | android:title="@string/show_screen_updates" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 357 | android:summary="@string/show_screen_updates_summary" /> |
Romain Guy | c1fa3e6 | 2012-04-27 15:27:54 -0700 | [diff] [blame] | 358 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 359 | <SwitchPreference |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 360 | android:key="debug_layout" |
| 361 | android:title="@string/debug_layout" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 362 | android:summary="@string/debug_layout_summary" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 363 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 364 | <SwitchPreference |
Amith Yamasani | df1eda8 | 2013-08-07 20:14:44 -0700 | [diff] [blame] | 365 | android:key="force_rtl_layout_all_locales" |
| 366 | android:title="@string/force_rtl_layout_all_locales" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 367 | android:summary="@string/force_rtl_layout_all_locales_summary" /> |
Amith Yamasani | df1eda8 | 2013-08-07 20:14:44 -0700 | [diff] [blame] | 368 | |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 369 | <ListPreference |
| 370 | android:key="window_animation_scale" |
| 371 | android:title="@string/window_animation_scale_title" |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 372 | android:entries="@array/window_animation_scale_entries" |
| 373 | android:entryValues="@array/window_animation_scale_values" /> |
| 374 | |
| 375 | <ListPreference |
| 376 | android:key="transition_animation_scale" |
| 377 | android:title="@string/transition_animation_scale_title" |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 378 | android:entries="@array/transition_animation_scale_entries" |
| 379 | android:entryValues="@array/transition_animation_scale_values" /> |
| 380 | |
Chet Haase | b29e7870 | 2012-02-01 15:10:12 -0800 | [diff] [blame] | 381 | <ListPreference |
| 382 | android:key="animator_duration_scale" |
| 383 | android:title="@string/animator_duration_scale_title" |
Chet Haase | b29e7870 | 2012-02-01 15:10:12 -0800 | [diff] [blame] | 384 | android:entries="@array/animator_duration_scale_entries" |
| 385 | android:entryValues="@array/animator_duration_scale_values" /> |
| 386 | |
Jeff Brown | b2b54ee | 2012-08-29 02:33:06 -0700 | [diff] [blame] | 387 | <ListPreference |
| 388 | android:key="overlay_display_devices" |
| 389 | android:title="@string/overlay_display_devices_title" |
Jeff Brown | b2b54ee | 2012-08-29 02:33:06 -0700 | [diff] [blame] | 390 | android:entries="@array/overlay_display_devices_entries" |
| 391 | android:entryValues="@array/overlay_display_devices_values" /> |
| 392 | |
Jason Monk | 449f972 | 2016-04-05 15:45:27 -0400 | [diff] [blame] | 393 | <com.android.settings.display.DensityPreference |
| 394 | android:key="density" |
| 395 | android:title="@string/developer_smallest_width" /> |
| 396 | |
Adrian Roos | ca2b1f8 | 2018-01-19 20:54:20 +0100 | [diff] [blame] | 397 | <ListPreference |
Adrian Roos | db9d097 | 2018-01-10 13:56:31 +0100 | [diff] [blame] | 398 | android:key="display_cutout_emulation" |
Adrian Roos | 280589b | 2018-04-17 17:22:05 +0200 | [diff] [blame] | 399 | android:title="@string/display_cutout_emulation" |
| 400 | settings:keywords="@string/display_cutout_emulation_keywords" /> |
Adrian Roos | db9d097 | 2018-01-10 13:56:31 +0100 | [diff] [blame] | 401 | |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 402 | </PreferenceCategory> |
| 403 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 404 | <PreferenceCategory |
| 405 | android:key="debug_hw_drawing_category" |
| 406 | android:title="@string/debug_hw_drawing_category" |
| 407 | android:order="700"> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 408 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 409 | <SwitchPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 410 | android:key="show_hw_screen_updates" |
| 411 | android:title="@string/show_hw_screen_updates" |
| 412 | android:summary="@string/show_hw_screen_updates_summary" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 413 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 414 | <SwitchPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 415 | android:key="show_hw_layers_updates" |
| 416 | android:title="@string/show_hw_layers_updates" |
| 417 | android:summary="@string/show_hw_layers_updates_summary" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 418 | |
Romain Guy | eb90fc5 | 2013-05-03 17:38:38 -0700 | [diff] [blame] | 419 | <ListPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 420 | android:key="debug_hw_overdraw" |
| 421 | android:title="@string/debug_hw_overdraw" |
| 422 | android:entries="@array/debug_hw_overdraw_entries" |
| 423 | android:entryValues="@array/debug_hw_overdraw_values" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 424 | |
| 425 | <ListPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 426 | android:key="show_non_rect_clip" |
| 427 | android:title="@string/show_non_rect_clip" |
| 428 | android:entries="@array/show_non_rect_clip_entries" |
| 429 | android:entryValues="@array/show_non_rect_clip_values" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 430 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 431 | <SwitchPreference |
John Reck | 3c2fdd0 | 2018-10-26 15:48:50 -0700 | [diff] [blame] | 432 | android:key="hwui_force_dark" |
| 433 | android:title="@string/hwui_force_dark_title" |
| 434 | android:summary="@string/hwui_force_dark_summary" /> |
| 435 | |
| 436 | <SwitchPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 437 | android:key="force_msaa" |
| 438 | android:title="@string/force_msaa" |
| 439 | android:summary="@string/force_msaa_summary" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 440 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 441 | <SwitchPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 442 | android:key="disable_overlays" |
| 443 | android:title="@string/disable_overlays" |
| 444 | android:summary="@string/disable_overlays_summary" /> |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 445 | |
Alan Viverette | fc0ab21 | 2013-10-02 16:36:33 -0700 | [diff] [blame] | 446 | <ListPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 447 | android:entries="@array/simulate_color_space_entries" |
| 448 | android:entryValues="@array/simulate_color_space_values" |
| 449 | android:key="simulate_color_space" |
| 450 | android:summary="%s" |
| 451 | android:title="@string/simulate_color_space" /> |
Alan Viverette | fc0ab21 | 2013-10-02 16:36:33 -0700 | [diff] [blame] | 452 | |
Romain Guy | 6b24c45 | 2013-02-25 16:21:58 -0800 | [diff] [blame] | 453 | </PreferenceCategory> |
| 454 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 455 | <PreferenceCategory |
| 456 | android:key="media_category" |
| 457 | android:title="@string/media_category" |
| 458 | android:order="800"> |
Lajos Molnar | 6b2f7c4 | 2014-03-28 09:48:58 -0700 | [diff] [blame] | 459 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 460 | <SwitchPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 461 | android:key="usb_audio" |
| 462 | android:title="@string/usb_audio_disable_routing" |
| 463 | android:summary="@string/usb_audio_disable_routing_summary" /> |
Glenn Kasten | ca54234 | 2014-07-22 09:14:08 -0700 | [diff] [blame] | 464 | |
Lajos Molnar | 6b2f7c4 | 2014-03-28 09:48:58 -0700 | [diff] [blame] | 465 | </PreferenceCategory> |
| 466 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 467 | <PreferenceCategory |
| 468 | android:key="debug_monitoring_category" |
| 469 | android:title="@string/debug_monitoring_category" |
| 470 | android:order="900"> |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 471 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 472 | <SwitchPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 473 | android:key="strict_mode" |
| 474 | android:title="@string/strict_mode" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 475 | android:summary="@string/strict_mode_summary" /> |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 476 | |
Romain Guy | 7061848 | 2013-01-07 11:20:49 -0800 | [diff] [blame] | 477 | <ListPreference |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 478 | android:key="track_frame_time" |
| 479 | android:title="@string/track_frame_time" |
Romain Guy | 7061848 | 2013-01-07 11:20:49 -0800 | [diff] [blame] | 480 | android:entries="@array/track_frame_time_entries" |
Tsung-Mao Fang | a257ca8 | 2019-09-23 14:06:37 +0800 | [diff] [blame] | 481 | android:entryValues="@array/track_frame_time_values" |
| 482 | settings:keywords="@string/track_frame_time_keywords" /> |
Dianne Hackborn | 34481b9 | 2012-05-07 17:52:07 -0700 | [diff] [blame] | 483 | |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 484 | </PreferenceCategory> |
| 485 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 486 | <PreferenceCategory |
| 487 | android:key="debug_applications_category" |
| 488 | android:title="@string/debug_applications_category" |
| 489 | android:order="1000"> |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 490 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 491 | <SwitchPreference |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 492 | android:key="immediately_destroy_activities" |
| 493 | android:title="@string/immediately_destroy_activities" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 494 | android:summary="@string/immediately_destroy_activities_summary" /> |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 495 | |
| 496 | <ListPreference |
| 497 | android:key="app_process_limit" |
| 498 | android:title="@string/app_process_limit_title" |
Dianne Hackborn | eddc4fe | 2011-07-01 18:56:09 -0700 | [diff] [blame] | 499 | android:entries="@array/app_process_limit_entries" |
| 500 | android:entryValues="@array/app_process_limit_values" /> |
| 501 | |
Dianne Hackborn | f467c0a | 2015-12-07 16:36:09 -0800 | [diff] [blame] | 502 | <Preference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 503 | android:key="background_check" |
| 504 | android:fragment="com.android.settings.applications.appops.BackgroundCheckSummary" |
| 505 | android:title="@string/background_check_pref" /> |
Fan Zhang | f5bd885 | 2017-05-17 17:22:09 -0700 | [diff] [blame] | 506 | |
Andrew Sapperstein | 5cd4956 | 2018-01-15 13:46:41 -0800 | [diff] [blame] | 507 | <SwitchPreference |
| 508 | android:key="show_first_crash_dialog" |
| 509 | android:title="@string/show_first_crash_dialog" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 510 | android:summary="@string/show_first_crash_dialog_summary" /> |
Dianne Hackborn | f467c0a | 2015-12-07 16:36:09 -0800 | [diff] [blame] | 511 | |
Fabrice Di Meglio | 8863873 | 2014-10-14 16:43:37 -0700 | [diff] [blame] | 512 | <SwitchPreference |
Dianne Hackborn | d5119bd | 2011-08-02 15:08:04 -0700 | [diff] [blame] | 513 | android:key="show_all_anrs" |
| 514 | android:title="@string/show_all_anrs" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 515 | android:summary="@string/show_all_anrs_summary" /> |
Dianne Hackborn | d5119bd | 2011-08-02 15:08:04 -0700 | [diff] [blame] | 516 | |
Geoffrey Pitsch | e18fd90 | 2017-05-11 12:58:23 -0400 | [diff] [blame] | 517 | <SwitchPreference |
| 518 | android:key="show_notification_channel_warnings" |
| 519 | android:title="@string/show_notification_channel_warnings" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 520 | android:summary="@string/show_notification_channel_warnings_summary" /> |
Geoffrey Pitsch | e18fd90 | 2017-05-11 12:58:23 -0400 | [diff] [blame] | 521 | |
Julia Reynolds | ada3676 | 2019-05-28 10:55:33 -0400 | [diff] [blame] | 522 | <SwitchPreference |
| 523 | android:key="asst_capability_prioritizer" |
| 524 | android:title="@string/asst_capability_prioritizer_title" |
| 525 | settings:controller="com.android.settings.notification.AssistantCapabilityPreferenceController" /> |
| 526 | |
Amith Yamasani | 50e32b0 | 2015-05-13 18:18:16 -0700 | [diff] [blame] | 527 | <Preference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 528 | android:key="inactive_apps" |
| 529 | android:title="@string/inactive_apps_title" |
| 530 | android:fragment="com.android.settings.fuelgauge.InactiveApps" /> |
Amith Yamasani | 50e32b0 | 2015-05-13 18:18:16 -0700 | [diff] [blame] | 531 | |
Todd Kennedy | 9716282 | 2015-08-07 14:39:08 -0700 | [diff] [blame] | 532 | <SwitchPreference |
| 533 | android:key="force_allow_on_external" |
| 534 | android:title="@string/force_allow_on_external" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 535 | android:summary="@string/force_allow_on_external_summary" /> |
Todd Kennedy | 9716282 | 2015-08-07 14:39:08 -0700 | [diff] [blame] | 536 | |
Jorim Jaggi | b12e9ad | 2015-10-27 10:54:53 +0100 | [diff] [blame] | 537 | <SwitchPreference |
| 538 | android:key="force_resizable_activities" |
| 539 | android:title="@string/force_resizable_activities" |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 540 | android:summary="@string/force_resizable_activities_summary" /> |
Makoto Onuki | 0651701 | 2016-07-08 09:17:25 -0700 | [diff] [blame] | 541 | |
Bryce Lee | 7f4ae33 | 2017-09-28 16:07:13 -0700 | [diff] [blame] | 542 | <SwitchPreference |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 543 | android:key="enable_freeform_support" |
| 544 | android:title="@string/enable_freeform_support" |
| 545 | android:summary="@string/enable_freeform_support_summary" /> |
Bryce Lee | 7f4ae33 | 2017-09-28 16:07:13 -0700 | [diff] [blame] | 546 | |
Andrii Kulian | 8e3859b | 2018-10-19 11:24:47 -0700 | [diff] [blame] | 547 | <SwitchPreference |
| 548 | android:key="force_desktop_mode_on_external_displays" |
| 549 | android:title="@string/force_desktop_mode" |
| 550 | android:summary="@string/force_desktop_mode_summary" /> |
| 551 | |
Evan Rosky | f55bd86 | 2019-09-20 17:17:09 -0700 | [diff] [blame] | 552 | <SwitchPreference |
| 553 | android:key="enable_sizecompat_freeform" |
| 554 | android:title="@string/enable_sizecompat_freeform" |
| 555 | android:summary="@string/enable_sizecompat_freeform_summary" /> |
| 556 | |
Makoto Onuki | 0651701 | 2016-07-08 09:17:25 -0700 | [diff] [blame] | 557 | <Preference |
| 558 | android:key="reset_shortcut_manager_throttling" |
| 559 | android:title="@string/reset_shortcut_manager_throttling" /> |
Eugene Susla | 7edf50f | 2018-10-10 10:57:02 -0700 | [diff] [blame] | 560 | |
| 561 | <SwitchPreference |
Mady Mellor | 32fa736 | 2019-05-06 16:54:07 -0700 | [diff] [blame] | 562 | android:key="notification_bubbles" |
| 563 | android:title="@string/notification_bubbles_title" |
| 564 | android:summary="@string/notification_bubbles_developer_setting_summary"/> |
| 565 | |
Fan Zhang | b74a23c | 2018-01-24 13:21:17 -0800 | [diff] [blame] | 566 | </PreferenceCategory> |
Doris Ling | 3d9224f | 2016-12-12 16:20:22 -0800 | [diff] [blame] | 567 | |
Felipe Leme | 9bf591b | 2018-07-24 17:24:40 -0700 | [diff] [blame] | 568 | <com.android.settings.development.autofill.AutofillPreferenceCategory |
| 569 | android:key="debug_autofill_category" |
| 570 | android:title="@string/debug_autofill_category" |
Amin Shaikh | 083478f | 2019-05-23 07:33:54 -0400 | [diff] [blame] | 571 | android:order="1100"> <!-- Incremented by 100 from last order (i.e. 1000) --> |
Felipe Leme | 9bf591b | 2018-07-24 17:24:40 -0700 | [diff] [blame] | 572 | |
| 573 | <ListPreference |
| 574 | android:key="autofill_logging_level" |
| 575 | android:title="@string/autofill_logging_level_title" |
| 576 | android:entries="@array/autofill_logging_level_entries" |
| 577 | android:entryValues="@array/autofill_logging_level_values" /> |
| 578 | |
| 579 | <com.android.settings.development.autofill.AutofillMaxPartitionsPreference |
| 580 | android:key="autofill_max_partitions" |
| 581 | android:title="@string/autofill_max_partitions" /> |
| 582 | |
| 583 | <com.android.settings.development.autofill.AutofillVisibleDatasetsPreference |
| 584 | android:key="autofill_visible_datasets" |
| 585 | android:title="@string/autofill_max_visible_datasets" /> |
| 586 | |
| 587 | <Preference |
| 588 | android:key="autofill_reset_developer_options" |
| 589 | android:title="@string/autofill_reset_developer_options" /> |
| 590 | |
| 591 | </com.android.settings.development.autofill.AutofillPreferenceCategory> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 592 | </PreferenceScreen> |