aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/src/main/res/xml/preferences.xml
blob: 670c8665f3c985edc7c0b0bfd6cb2402635c5c5b (plain) (blame)
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
<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <com.wireguard.android.preference.VersionPreference android:icon="@mipmap/ic_launcher" />
    <CheckBoxPreference
        android:defaultValue="false"
        android:key="restore_on_boot"
        android:summaryOn="@string/restore_on_boot_summary_on"
        android:summaryOff="@string/restore_on_boot_summary_off"
        android:title="@string/restore_on_boot_title" />
    <CheckBoxPreference
        android:defaultValue="false"
        android:key="multiple_tunnels"
        android:summaryOff="@string/multiple_tunnels_summary_off"
        android:summaryOn="@string/multiple_tunnels_summary_on"
        android:title="@string/multiple_tunnels_title" />
    <com.wireguard.android.preference.ModuleDownloaderPreference android:key="module_downloader" />
    <com.wireguard.android.preference.ToolsInstallerPreference android:key="tools_installer" />
    <com.wireguard.android.preference.ZipExporterPreference />
    <com.wireguard.android.preference.LogExporterPreference />
    <CheckBoxPreference
        android:defaultValue="false"
        android:key="dark_theme"
        android:summaryOff="@string/dark_theme_summary_off"
        android:summaryOn="@string/dark_theme_summary_on"
        android:title="@string/dark_theme_title" />
</androidx.preference.PreferenceScreen>