tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

sync_debug_preferences.xml (2285B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      3   - License, v. 2.0. If a copy of the MPL was not distributed with this
      4   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      5 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
      6    xmlns:app="http://schemas.android.com/apk/res-auto">
      7    <androidx.preference.EditTextPreference
      8        android:key="@string/pref_key_override_fxa_server"
      9        android:title="@string/preferences_override_account_server"
     10        android:inputType="textUri"
     11        app:iconSpaceReserved="false" />
     12    <androidx.preference.EditTextPreference
     13        android:key="@string/pref_key_override_sync_tokenserver"
     14        android:title="@string/preferences_override_sync_tokenserver"
     15        android:inputType="textUri"
     16        app:iconSpaceReserved="false" />
     17    <androidx.preference.EditTextPreference
     18        android:key="@string/pref_key_override_push_server"
     19        android:title="@string/preferences_override_push_server"
     20        android:inputType="textUri"
     21        app:iconSpaceReserved="false" />
     22    <androidx.preference.Preference
     23        android:key="@string/pref_key_sync_debug_quit"
     24        android:title="@string/preferences_sync_debug_quit_button_title"
     25        android:summary="@string/preferences_sync_debug_quit_button_summary"
     26        android:icon="@drawable/ic_close"
     27        app:isPreferenceVisible="false" />
     28    <CheckBoxPreference
     29        android:defaultValue="false"
     30        android:key="@string/pref_key_use_react_fxa"
     31        android:title="@string/preferences_use_react_fxa"
     32        app:iconSpaceReserved="false"
     33        />
     34    <androidx.preference.Preference
     35        android:key="@string/pref_key_sync_debug_network_error"
     36        android:title="@string/preferences_sync_debug_network_error_button_title" />
     37    <androidx.preference.Preference
     38        android:key="@string/pref_key_sync_debug_temporary_auth_error"
     39        android:title="@string/preferences_sync_debug_temporary_auth_error_button_title" />
     40    <androidx.preference.Preference
     41        android:key="@string/pref_key_sync_debug_permanent_auth_error"
     42        android:title="@string/preferences_sync_debug_permanent_auth_error_button_title" />
     43 </PreferenceScreen>