commit 2b1c5272d125dc9edf1b6103dca28ae298a4100f Author: Hashik Donthineni HashikDonthineni@gmail.com Date: Sun Jun 28 13:57:27 2020 +0530
Addex settings XML file --- app/src/main/res/xml/app_settings.xml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+)
diff --git a/app/src/main/res/xml/app_settings.xml b/app/src/main/res/xml/app_settings.xml new file mode 100644 index 0000000..6685708 --- /dev/null +++ b/app/src/main/res/xml/app_settings.xml @@ -0,0 +1,25 @@ +<?xml version="1.0" encoding="utf-8"?> +<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> + + <PreferenceCategory android:title="Snowflake Settings"> + + <EditTextPreference + android:defaultValue="Default value" + android:key="edit_text_preference_1" + android:selectAllOnFocus="true" + android:singleLine="true" + android:title="Custom STUN Server" /> + <EditTextPreference + android:defaultValue="Default value" + android:key="edit_text_preference_1" + android:selectAllOnFocus="true" + android:singleLine="true" + android:title="Custom Broker URL" /> + <EditTextPreference + android:defaultValue="Default value" + android:key="edit_text_preference_2" + android:selectAllOnFocus="true" + android:singleLine="true" + android:title="Custom Relay URL" /> + </PreferenceCategory> +</PreferenceScreen> \ No newline at end of file
tor-commits@lists.torproject.org