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 | 08992185ecfe359ae7607a779b984fc6c3b8b22b (patch) | |
tree | 2c993f3eb3f790a8282bb2a911e25c1b42e4d4dd /app/src/main/res/xml | |
parent | e95b41e48b7f335c08833a2e9bab0902d1ce98f8 (diff) |
SettingsActivity: Implement primary config setting
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
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> |