2017-08-16 11:34:14 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-02-17 04:14:11 +01:00
|
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
2018-06-03 16:15:30 +02:00
|
|
|
<com.wireguard.android.preference.VersionPreference android:icon="@mipmap/ic_launcher" />
|
2017-08-16 11:37:11 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="restore_on_boot"
|
2020-03-09 21:54:20 +01:00
|
|
|
android:summaryOn="@string/restore_on_boot_summary_on"
|
|
|
|
android:summaryOff="@string/restore_on_boot_summary_off"
|
2018-01-08 09:19:13 +01:00
|
|
|
android:title="@string/restore_on_boot_title" />
|
2020-03-09 17:01:54 +01:00
|
|
|
<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" />
|
2020-03-09 21:49:31 +01:00
|
|
|
<com.wireguard.android.preference.ModuleDownloaderPreference android:key="module_downloader" />
|
|
|
|
<com.wireguard.android.preference.ToolsInstallerPreference android:key="tools_installer" />
|
2018-06-02 18:19:42 +02:00
|
|
|
<com.wireguard.android.preference.ZipExporterPreference />
|
|
|
|
<com.wireguard.android.preference.LogExporterPreference />
|
2018-06-01 07:34:00 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="dark_theme"
|
|
|
|
android:summaryOff="@string/dark_theme_summary_off"
|
2018-09-06 01:33:42 +02:00
|
|
|
android:summaryOn="@string/dark_theme_summary_on"
|
2018-06-01 07:34:00 +02:00
|
|
|
android:title="@string/dark_theme_title" />
|
2020-03-09 22:19:02 +01:00
|
|
|
<com.wireguard.android.preference.KernelModuleDisablerPreference android:key="kernel_module_disabler" />
|
2019-02-17 04:14:11 +01:00
|
|
|
</androidx.preference.PreferenceScreen>
|