diff options
author | Samuel Holland <samuel@sholland.org> | 2017-08-16 04:34:14 -0500 |
---|---|---|
committer | Samuel Holland <samuel@sholland.org> | 2017-08-16 04:34:14 -0500 |
commit | 6c280f09d2fb36572d1d0f96156030f152d15727 (patch) | |
tree | 2c993f3eb3f790a8282bb2a911e25c1b42e4d4dd /app/src/main/res/xml | |
parent | 5c30cd0a82a64949c017e2d5ea807d68873bb766 (diff) |
SettingsActivity: Implement primary config setting
Diffstat (limited to 'app/src/main/res/xml')
-rw-r--r-- | app/src/main/res/xml/preferences.xml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/src/main/res/xml/preferences.xml b/app/src/main/res/xml/preferences.xml new file mode 100644 index 00000000..09c32942 --- /dev/null +++ b/app/src/main/res/xml/preferences.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?> +<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> + <com.wireguard.android.ConfigListPreference + android:key="primary_config" + android:summary="@string/primary_config_summary" + android:title="@string/primary_config" /> +</PreferenceScreen> |