2021-12-31 01:34:25 +01:00
|
|
|
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-01-01 13:42:00 +01:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-12-31 01:34:25 +01:00
|
|
|
app:title="@string/settings_title">
|
2022-01-01 13:42:00 +01:00
|
|
|
<PreferenceCategory
|
|
|
|
app:title="@string/settings_notifications_header"
|
|
|
|
app:layout="@layout/preference_category_material_edited">
|
|
|
|
<Preference
|
2022-01-01 16:56:18 +01:00
|
|
|
app:key="@string/settings_notifications_muted_until_key"
|
2022-01-01 13:42:00 +01:00
|
|
|
app:title="@string/settings_notifications_muted_until_title"/>
|
2022-01-01 16:56:18 +01:00
|
|
|
<ListPreference
|
|
|
|
app:key="@string/settings_notifications_min_priority_key"
|
|
|
|
app:title="@string/settings_notifications_min_priority_title"
|
|
|
|
app:entries="@array/settings_notifications_min_priority_entries"
|
|
|
|
app:entryValues="@array/settings_notifications_min_priority_values"
|
|
|
|
app:defaultValue="1"/>
|
2022-01-12 01:37:34 +01:00
|
|
|
<ListPreference
|
2022-01-10 04:08:29 +01:00
|
|
|
app:key="@string/settings_notifications_auto_download_key"
|
|
|
|
app:title="@string/settings_notifications_auto_download_title"
|
2022-01-12 01:37:34 +01:00
|
|
|
app:entries="@array/settings_notifications_auto_download_entries"
|
|
|
|
app:entryValues="@array/settings_notifications_auto_download_values"
|
|
|
|
app:defaultValue="1"/>
|
2022-01-01 13:42:00 +01:00
|
|
|
</PreferenceCategory>
|
2021-12-31 01:34:25 +01:00
|
|
|
<PreferenceCategory
|
|
|
|
app:title="@string/settings_unified_push_header"
|
|
|
|
app:summary="@string/settings_unified_push_header_summary"
|
|
|
|
app:layout="@layout/preference_category_material_edited">
|
|
|
|
<SwitchPreference
|
2022-01-01 16:56:18 +01:00
|
|
|
app:key="@string/settings_unified_push_enabled_key"
|
2021-12-31 01:34:25 +01:00
|
|
|
app:title="@string/settings_unified_push_enabled_title"
|
|
|
|
app:enabled="true"/>
|
|
|
|
<EditTextPreference
|
2022-01-01 16:56:18 +01:00
|
|
|
app:key="@string/settings_unified_push_base_url_key"
|
2021-12-31 01:34:25 +01:00
|
|
|
app:title="@string/settings_unified_push_base_url_title"
|
2022-01-01 16:56:18 +01:00
|
|
|
app:dependency="@string/settings_unified_push_enabled_key"/>
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory app:title="@string/settings_advanced_header">
|
2022-01-16 21:21:34 +01:00
|
|
|
<SwitchPreference
|
|
|
|
app:key="@string/settings_advanced_broadcast_key"
|
|
|
|
app:title="@string/settings_advanced_broadcast_title"
|
|
|
|
app:enabled="true"/>
|
2022-01-18 00:05:59 +01:00
|
|
|
<SwitchPreference
|
|
|
|
app:key="@string/settings_advanced_record_logs_key"
|
|
|
|
app:title="@string/settings_advanced_record_logs_title"
|
|
|
|
app:enabled="true"/>
|
|
|
|
<Preference
|
|
|
|
app:key="@string/settings_advanced_copy_logs_key"
|
|
|
|
app:title="@string/settings_advanced_copy_logs_title"
|
|
|
|
android:summary="@string/settings_advanced_copy_logs_summary"/>
|
2022-01-16 21:21:34 +01:00
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory app:title="@string/settings_experimental_header">
|
2022-01-16 00:40:38 +01:00
|
|
|
<ListPreference
|
|
|
|
app:key="@string/settings_advanced_connection_protocol_key"
|
|
|
|
app:title="@string/settings_advanced_connection_protocol_title"
|
|
|
|
app:entries="@array/settings_advanced_connection_protocol_entries"
|
|
|
|
app:entryValues="@array/settings_advanced_connection_protocol_values"
|
|
|
|
app:defaultValue="jsonhttp"/>
|
2022-01-11 23:12:32 +01:00
|
|
|
<SwitchPreference
|
2022-01-16 21:21:34 +01:00
|
|
|
app:key="@string/settings_advanced_wakelock_key"
|
|
|
|
app:title="@string/settings_advanced_wakelock_title"
|
2022-01-01 16:56:18 +01:00
|
|
|
app:enabled="true"/>
|
2021-12-31 01:34:25 +01:00
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory app:title="@string/settings_about_header">
|
|
|
|
<Preference
|
2022-01-01 16:56:18 +01:00
|
|
|
app:key="@string/settings_about_version_key"
|
2022-01-01 13:42:00 +01:00
|
|
|
app:title="@string/settings_about_version_title"/>
|
2021-12-31 01:34:25 +01:00
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|