2022-02-08 14:58:50 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-06-07 17:12:07 +05:30
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-02-08 14:58:50 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2022-05-11 02:10:29 +05:30
|
|
|
|
2022-08-01 12:47:36 +05:30
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_settings"
|
|
|
|
android:summary="@string/general_summary"
|
|
|
|
app:key="general"
|
|
|
|
app:title="@string/general" />
|
2022-06-03 22:19:48 +05:30
|
|
|
|
2022-08-01 12:47:36 +05:30
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_server"
|
|
|
|
app:key="instance"
|
|
|
|
app:summary="@string/instance_summary"
|
|
|
|
app:title="@string/instance" />
|
2022-05-11 02:10:29 +05:30
|
|
|
|
2022-08-01 12:47:36 +05:30
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_color"
|
|
|
|
app:key="appearance"
|
|
|
|
app:summary="@string/appearance_summary"
|
|
|
|
app:title="@string/appearance" />
|
2022-05-19 21:52:19 +05:30
|
|
|
|
2022-08-01 12:47:36 +05:30
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_block"
|
|
|
|
app:key="sponsorblock"
|
|
|
|
app:summary="@string/sponsorblock_summary"
|
|
|
|
app:title="@string/sponsorblock" />
|
2022-06-03 22:19:48 +05:30
|
|
|
|
2022-08-01 12:47:36 +05:30
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_movie"
|
|
|
|
app:key="player"
|
|
|
|
app:summary="@string/player_summary"
|
|
|
|
app:title="@string/audio_video" />
|
2022-06-18 19:28:41 +05:30
|
|
|
|
2022-08-01 12:47:36 +05:30
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_history_filled"
|
|
|
|
android:summary="@string/history_summary"
|
|
|
|
app:key="history"
|
|
|
|
app:title="@string/history" />
|
2022-07-16 01:42:51 +05:30
|
|
|
|
2022-08-01 12:47:36 +05:30
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_notification"
|
|
|
|
android:summary="@string/notify_new_streams"
|
|
|
|
app:key="notifications"
|
|
|
|
app:title="@string/notifications" />
|
2022-07-28 18:01:35 +05:30
|
|
|
|
2022-08-01 12:47:36 +05:30
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_list"
|
|
|
|
app:key="advanced"
|
|
|
|
app:summary="@string/advanced_summary"
|
|
|
|
app:title="@string/advanced" />
|
2022-05-15 19:26:24 +05:30
|
|
|
|
2022-06-07 19:22:10 +05:30
|
|
|
<PreferenceCategory>
|
2022-05-11 02:10:29 +05:30
|
|
|
|
2022-06-18 15:45:07 +05:30
|
|
|
<Preference
|
|
|
|
android:icon="@drawable/ic_update"
|
|
|
|
app:key="update"
|
|
|
|
app:summary="@string/update_summary"
|
2022-06-19 13:32:08 +05:30
|
|
|
app:title="App version" />
|
2022-06-18 15:45:07 +05:30
|
|
|
|
2022-03-18 01:18:43 +05:30
|
|
|
|
2022-05-11 02:10:29 +05:30
|
|
|
</PreferenceCategory>
|
|
|
|
|
2022-06-18 15:45:07 +05:30
|
|
|
</PreferenceScreen>
|