advanced_settings.xml (1743B)
1 <?xml version="1.0" encoding="utf-8"?><!-- This Source Code Form is subject to the terms of the Mozilla Public 2 - License, v. 2.0. If a copy of the MPL was not distributed with this 3 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 <androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" 5 xmlns:app="http://schemas.android.com/apk/res-auto"> 6 <androidx.preference.PreferenceCategory 7 android:layout="@layout/preference_section_header_layout" 8 android:title="@string/preference_advanced_summary"> 9 <androidx.preference.SwitchPreference 10 android:defaultValue="false" 11 android:key="@string/pref_key_remote_debugging" 12 android:layout="@layout/focus_preference_no_icon" 13 android:title="@string/preference_remote_debugging" /> 14 15 <androidx.preference.SwitchPreference 16 android:defaultValue="false" 17 android:key="@string/pref_key_open_links_in_external_app" 18 android:layout="@layout/focus_preference_no_icon" 19 android:title="@string/preferences_open_links_in_apps" /> 20 21 <androidx.preference.SwitchPreference 22 android:defaultValue="true" 23 android:key="@string/pref_key_leakcanary" 24 android:title="@string/preference_leakcanary" 25 app:iconSpaceReserved="false" /> 26 27 <androidx.preference.Preference 28 android:key="@string/pref_key_secret_settings" 29 android:layout="@layout/focus_preference_no_icon" 30 android:title="@string/preference_secret_settings" 31 app:isPreferenceVisible="false" /> 32 </androidx.preference.PreferenceCategory> 33 </androidx.preference.PreferenceScreen>