mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
33 lines
1.7 KiB
XML
33 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<CheckBoxPreference android:key="pref_enable_manual_mms"
|
|
android:defaultValue="false"
|
|
android:title="@string/preferences__enable_manual_mms"
|
|
android:summary="@string/preferences__override_system_mms_settings"/>
|
|
|
|
<EditTextPreference android:key="pref_apn_mmsc_host"
|
|
android:title="@string/preferences__mmsc_url_required"
|
|
android:dependency="pref_enable_manual_mms"
|
|
android:inputType="textUri" />
|
|
|
|
<EditTextPreference android:key="pref_apn_mms_proxy"
|
|
android:title="@string/preferences__mms_proxy_host_optional"
|
|
android:dependency="pref_enable_manual_mms"
|
|
android:inputType="textUri" />
|
|
|
|
<EditTextPreference android:key="pref_apn_mms_proxy_port"
|
|
android:title="@string/preferences__mms_proxy_port_optional"
|
|
android:dependency="pref_enable_manual_mms"
|
|
android:inputType="number" />
|
|
|
|
<EditTextPreference android:key="pref_apn_mmsc_username"
|
|
android:title="@string/preferences__mmsc_username_optional"
|
|
android:dependency="pref_enable_manual_mms"
|
|
android:inputType="textNoSuggestions" />
|
|
|
|
<EditTextPreference android:key="pref_apn_mmsc_password"
|
|
android:title="@string/preferences__mmsc_password_optional"
|
|
android:dependency="pref_enable_manual_mms"
|
|
android:inputType="textVisiblePassword" />
|
|
</PreferenceScreen> |