2022-07-28 18:01:35 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
|
|
<PreferenceCategory app:title="@string/notifications">
|
|
|
|
|
|
|
|
<SwitchPreferenceCompat
|
|
|
|
android:icon="@drawable/ic_notification"
|
2022-08-01 12:47:36 +05:30
|
|
|
android:summary="@string/notify_new_streams_summary"
|
2022-07-28 18:01:35 +05:30
|
|
|
app:defaultValue="true"
|
|
|
|
app:key="notification_toggle"
|
2022-08-01 12:47:36 +05:30
|
|
|
app:title="@string/notify_new_streams" />
|
2022-07-28 18:01:35 +05:30
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
android:icon="@drawable/ic_time"
|
|
|
|
app:defaultValue="60"
|
|
|
|
app:entries="@array/checkingFrequency"
|
|
|
|
app:entryValues="@array/checkingFrequencyValues"
|
|
|
|
app:key="checking_frequency"
|
|
|
|
app:title="@string/checking_frequency"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
|
2022-07-31 18:06:39 +05:30
|
|
|
<ListPreference
|
|
|
|
android:icon="@drawable/ic_signal"
|
|
|
|
app:defaultValue="all"
|
|
|
|
app:entries="@array/requiredNetwork"
|
|
|
|
app:entryValues="@array/requiredNetworkValues"
|
|
|
|
app:key="required_network"
|
|
|
|
app:title="@string/required_network"
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
|
2022-07-28 18:01:35 +05:30
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
</PreferenceScreen>
|