ade8f18a95
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
40 lines
2.0 KiB
XML
40 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:key="settings">
|
|
<com.wireguard.android.preference.VersionPreference
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:key="version" />
|
|
<CheckBoxPreference
|
|
android:defaultValue="false"
|
|
android:key="restore_on_boot"
|
|
android:summaryOff="@string/restore_on_boot_summary_off"
|
|
android:summaryOn="@string/restore_on_boot_summary_on"
|
|
android:title="@string/restore_on_boot_title" />
|
|
<com.wireguard.android.preference.ZipExporterPreference android:key="zip_exporter" />
|
|
<Preference
|
|
android:key="log_viewer"
|
|
android:summary="@string/log_viewer_pref_summary"
|
|
android:title="@string/log_viewer_title" />
|
|
<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" />
|
|
<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.KernelModuleDisablerPreference android:key="kernel_module_disabler" />
|
|
<CheckBoxPreference
|
|
android:defaultValue="false"
|
|
android:key="allow_remote_control_intents"
|
|
android:summaryOff="@string/allow_remote_control_intents_summary_off"
|
|
android:summaryOn="@string/allow_remote_control_intents_summary_on"
|
|
android:title="@string/allow_remote_control_intents_title" />
|
|
</androidx.preference.PreferenceScreen>
|