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