2021-04-27 11:12:20 +02:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2021-09-04 19:20:52 +02:00
|
|
|
<PreferenceCategory app:title="@string/settings_title_general">
|
2021-09-13 12:46:51 +02:00
|
|
|
<Preference
|
2025-10-06 21:47:57 -05:00
|
|
|
android:layout_height="match_parent"
|
2021-09-13 12:46:51 +02:00
|
|
|
android:key="equalizer"
|
2025-10-06 21:47:57 -05:00
|
|
|
android:summary="@string/settings_equalizer_summary"
|
|
|
|
|
android:title="@string/settings_equalizer_title" />
|
2021-09-13 12:46:51 +02:00
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
|
android:key="scan_library"
|
|
|
|
|
android:title="@string/settings_scan_title" />
|
|
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
|
android:key="logout"
|
|
|
|
|
android:title="@string/settings_logout_title"/>
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
2023-03-16 19:47:39 +01:00
|
|
|
<PreferenceCategory app:title="@string/settings_title_ui">
|
2023-08-17 14:09:17 +02:00
|
|
|
<ListPreference
|
2025-10-06 21:47:57 -05:00
|
|
|
android:layout_height="match_parent"
|
2023-08-17 14:09:17 +02:00
|
|
|
app:defaultValue="default"
|
|
|
|
|
app:dialogTitle="@string/settings_language"
|
|
|
|
|
app:key="language"
|
2025-10-06 21:47:57 -05:00
|
|
|
app:title="@string/settings_language" />
|
2023-08-17 14:09:17 +02:00
|
|
|
|
2023-03-16 19:47:39 +01:00
|
|
|
<ListPreference
|
|
|
|
|
app:defaultValue="default"
|
|
|
|
|
app:dialogTitle="@string/settings_theme"
|
|
|
|
|
app:entries="@array/theme_list_titles"
|
|
|
|
|
app:entryValues="@array/theme_list_values"
|
|
|
|
|
app:key="theme"
|
|
|
|
|
app:title="@string/settings_theme"
|
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
|
|
2024-01-28 23:22:03 +01:00
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_always_on_display"
|
|
|
|
|
android:defaultValue="false"
|
|
|
|
|
android:key="always_on_display" />
|
|
|
|
|
|
2023-03-16 19:47:39 +01:00
|
|
|
<SwitchPreference
|
2025-10-06 21:47:57 -05:00
|
|
|
android:layout_height="match_parent"
|
2023-03-16 19:47:39 +01:00
|
|
|
android:defaultValue="true"
|
2025-10-06 21:47:57 -05:00
|
|
|
android:key="rounded_corner"
|
2023-03-16 19:47:39 +01:00
|
|
|
android:summary="@string/settings_rounded_corner_summary"
|
2025-10-06 21:47:57 -05:00
|
|
|
android:title="@string/settings_rounded_corner" />
|
2023-03-16 19:47:39 +01:00
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
|
app:defaultValue="6"
|
|
|
|
|
app:dialogTitle="@string/settings_rounded_corner_size"
|
|
|
|
|
app:entries="@array/rounded_corner_size_titles"
|
|
|
|
|
app:entryValues="@array/rounded_corner_size_values"
|
|
|
|
|
app:key="rounded_corner_size"
|
|
|
|
|
app:title="@string/settings_rounded_corner_size"
|
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2023-06-04 11:59:25 +02:00
|
|
|
|
2024-02-18 17:14:41 +01:00
|
|
|
<SwitchPreference
|
2025-10-06 21:47:57 -05:00
|
|
|
android:layout_height="wrap_content"
|
2024-02-18 17:14:41 +01:00
|
|
|
android:defaultValue="false"
|
2025-10-06 21:47:57 -05:00
|
|
|
android:key="audio_quality_per_item"
|
2024-02-18 17:14:41 +01:00
|
|
|
android:summary="@string/settings_audio_quality_summary"
|
2025-10-06 21:47:57 -05:00
|
|
|
android:title="@string/settings_audio_quality" />
|
2024-02-18 17:14:41 +01:00
|
|
|
|
2025-08-24 18:55:36 -07:00
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_song_rating"
|
|
|
|
|
android:defaultValue="false"
|
|
|
|
|
android:summary="@string/settings_song_rating_summary"
|
|
|
|
|
android:key="song_rating_per_item" />
|
|
|
|
|
|
2024-03-24 00:45:19 +01:00
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_item_rating"
|
|
|
|
|
android:defaultValue="false"
|
|
|
|
|
android:summary="@string/settings_item_rating_summary"
|
|
|
|
|
android:key="rating_per_item" />
|
|
|
|
|
|
2023-06-04 11:59:25 +02:00
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_podcast"
|
|
|
|
|
android:defaultValue="true"
|
|
|
|
|
android:summary="@string/settings_podcast_summary"
|
|
|
|
|
android:key="podcast_section_visibility" />
|
|
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_radio"
|
|
|
|
|
android:defaultValue="true"
|
|
|
|
|
android:summary="@string/settings_radio_summary"
|
|
|
|
|
android:key="radio_section_visibility" />
|
2023-07-02 19:36:39 +02:00
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_music_directory"
|
|
|
|
|
android:defaultValue="true"
|
|
|
|
|
android:summary="@string/settings_music_directory_summary"
|
|
|
|
|
android:key="music_directory_section_visibility" />
|
2023-03-16 19:47:39 +01:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
2025-10-06 21:47:57 -05:00
|
|
|
<PreferenceCategory app:title="Playlist">
|
|
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_allow_playlist_duplicates"
|
|
|
|
|
android:defaultValue="false"
|
|
|
|
|
android:summary="@string/settings_allow_playlist_duplicates_summary"
|
|
|
|
|
android:key="allow_playlist_duplicates" />
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
2021-09-13 12:46:51 +02:00
|
|
|
<PreferenceCategory app:title="@string/settings_title_data">
|
2024-05-26 11:05:43 +02:00
|
|
|
<ListPreference
|
|
|
|
|
app:defaultValue="256"
|
|
|
|
|
app:dialogTitle="@string/settings_streaming_cache_size"
|
|
|
|
|
app:entries="@array/streaming_cache_size_titles"
|
|
|
|
|
app:entryValues="@array/streaming_cache_size_values"
|
|
|
|
|
app:key="streaming_cache_size"
|
|
|
|
|
app:title="@string/settings_streaming_cache_size" />
|
|
|
|
|
|
2021-09-13 12:46:51 +02:00
|
|
|
<ListPreference
|
2023-03-13 17:00:43 +01:00
|
|
|
app:defaultValue="500"
|
2021-09-04 19:20:52 +02:00
|
|
|
app:dialogTitle="@string/settings_covers_cache"
|
2020-11-20 15:38:08 +01:00
|
|
|
app:entries="@array/pref_cache_size_titles"
|
|
|
|
|
app:entryValues="@array/pref_cache_size_values"
|
|
|
|
|
app:key="image_cache_size"
|
2021-09-04 19:20:52 +02:00
|
|
|
app:title="@string/settings_covers_cache"
|
2020-11-20 15:38:08 +01:00
|
|
|
app:useSimpleSummaryProvider="true" />
|
2021-08-10 14:05:07 +02:00
|
|
|
|
2021-08-31 09:58:14 +02:00
|
|
|
<ListPreference
|
|
|
|
|
app:defaultValue="-1"
|
2021-09-04 19:20:52 +02:00
|
|
|
app:dialogTitle="@string/settings_image_size"
|
2021-08-31 09:58:14 +02:00
|
|
|
app:entries="@array/pref_image_size_titles"
|
|
|
|
|
app:entryValues="@array/pref_image_size_values"
|
|
|
|
|
app:key="image_size"
|
2021-09-04 19:20:52 +02:00
|
|
|
app:title="@string/settings_image_size"
|
2021-08-31 09:58:14 +02:00
|
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
|
|
2024-06-02 19:18:16 +02:00
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_continuous_play_title"
|
|
|
|
|
android:defaultValue="true"
|
|
|
|
|
android:summary="@string/settings_continuous_play_summary"
|
|
|
|
|
android:key="continuous_play" />
|
|
|
|
|
|
2021-09-13 12:46:51 +02:00
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_wifi_only_title"
|
|
|
|
|
android:defaultValue="false"
|
|
|
|
|
android:summary="@string/settings_wifi_only_summary"
|
|
|
|
|
android:key="wifi_only" />
|
|
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_data_saving_mode_title"
|
|
|
|
|
android:defaultValue="false"
|
|
|
|
|
android:summary="@string/settings_data_saving_mode_summary"
|
|
|
|
|
android:key="data_saving_mode" />
|
2023-08-04 23:46:33 +02:00
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_sync_starred_tracks_for_offline_use_title"
|
|
|
|
|
android:defaultValue="false"
|
|
|
|
|
android:summary="@string/settings_sync_starred_tracks_for_offline_use_summary"
|
|
|
|
|
android:key="sync_starred_tracks_for_offline_use" />
|
|
|
|
|
|
2025-08-30 09:04:25 -07:00
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_sync_starred_albums_for_offline_use_title"
|
|
|
|
|
android:defaultValue="false"
|
|
|
|
|
android:summary="@string/settings_sync_starred_albums_for_offline_use_summary"
|
|
|
|
|
android:key="sync_starred_albums_for_offline_use" />
|
|
|
|
|
|
2023-11-26 19:10:21 +01:00
|
|
|
<ListPreference
|
|
|
|
|
app:defaultValue="1"
|
|
|
|
|
app:dialogTitle="@string/settings_buffering_strategy"
|
|
|
|
|
app:entries="@array/buffering_strategy_titles"
|
|
|
|
|
app:entryValues="@array/buffering_strategy_values"
|
|
|
|
|
app:key="buffering_strategy"
|
|
|
|
|
app:title="@string/settings_buffering_strategy"
|
|
|
|
|
app:summary="@string/settings_buffering_strategy_summary"
|
|
|
|
|
app:useSimpleSummaryProvider="false" />
|
|
|
|
|
|
2024-05-26 14:49:57 +02:00
|
|
|
<Preference
|
|
|
|
|
android:key="streaming_cache_storage"
|
|
|
|
|
app:title="@string/settings_streaming_cache_storage_title" />
|
|
|
|
|
|
2023-08-04 23:46:33 +02:00
|
|
|
<Preference
|
|
|
|
|
android:key="download_storage"
|
|
|
|
|
app:title="@string/settings_download_storage_title" />
|
2023-08-06 00:01:02 +02:00
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
|
android:key="delete_download_storage"
|
|
|
|
|
app:title="@string/settings_delete_download_storage_title"
|
|
|
|
|
app:summary="@string/settings_delete_download_storage_summary"/>
|
2021-09-13 12:46:51 +02:00
|
|
|
</PreferenceCategory>
|
2021-08-08 19:21:56 +02:00
|
|
|
|
2021-09-13 12:46:51 +02:00
|
|
|
<PreferenceCategory app:title="@string/settings_title_transcoding">
|
2021-09-13 17:42:39 +02:00
|
|
|
<Preference
|
|
|
|
|
app:selectable="false"
|
|
|
|
|
app:summary="@string/settings_summary_transcoding" />
|
|
|
|
|
|
2023-07-20 17:20:57 +02:00
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_audio_transcode_priority_title"
|
|
|
|
|
android:defaultValue="false"
|
|
|
|
|
android:summary="@string/settings_audio_transcode_priority_summary"
|
|
|
|
|
android:key="audio_transcode_priority" />
|
|
|
|
|
|
2021-09-07 18:06:00 +02:00
|
|
|
<ListPreference
|
|
|
|
|
app:defaultValue="raw"
|
2021-09-12 12:14:36 +02:00
|
|
|
app:dialogTitle="@string/settings_audio_transcode_format_wifi"
|
|
|
|
|
app:entries="@array/audio_transcode_format_wifi_list_titles"
|
|
|
|
|
app:entryValues="@array/audio_transcode_format_wifi_list_values"
|
|
|
|
|
app:key="audio_transcode_format_wifi"
|
|
|
|
|
app:title="@string/settings_audio_transcode_format_wifi"
|
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
|
|
2021-09-13 17:32:39 +02:00
|
|
|
<ListPreference
|
|
|
|
|
app:defaultValue="0"
|
|
|
|
|
app:dialogTitle="@string/settings_max_bitrate_wifi"
|
|
|
|
|
app:entries="@array/max_bitrate_wifi_list_titles"
|
|
|
|
|
app:entryValues="@array/max_bitrate_wifi_list_values"
|
|
|
|
|
app:key="max_bitrate_wifi"
|
|
|
|
|
app:title="@string/settings_max_bitrate_wifi"
|
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
|
|
2021-09-12 12:14:36 +02:00
|
|
|
<ListPreference
|
|
|
|
|
app:defaultValue="raw"
|
|
|
|
|
app:dialogTitle="@string/settings_audio_transcode_format_mobile"
|
|
|
|
|
app:entries="@array/audio_transcode_format_mobile_list_titles"
|
|
|
|
|
app:entryValues="@array/audio_transcode_format_mobile_list_values"
|
|
|
|
|
app:key="audio_transcode_format_mobile"
|
|
|
|
|
app:title="@string/settings_audio_transcode_format_mobile"
|
2021-09-07 18:06:00 +02:00
|
|
|
app:useSimpleSummaryProvider="true" />
|
2021-09-13 17:32:39 +02:00
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
|
app:defaultValue="0"
|
|
|
|
|
app:dialogTitle="@string/settings_max_bitrate_mobile"
|
|
|
|
|
app:entries="@array/max_bitrate_mobile_list_titles"
|
|
|
|
|
app:entryValues="@array/max_bitrate_mobile_list_values"
|
|
|
|
|
app:key="max_bitrate_mobile"
|
|
|
|
|
app:title="@string/settings_max_bitrate_mobile"
|
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
2023-09-17 19:12:45 +02:00
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_audio_transcode_estimate_content_length_title"
|
|
|
|
|
android:defaultValue="false"
|
|
|
|
|
android:summary="@string/settings_audio_transcode_estimate_content_length_summary"
|
|
|
|
|
android:key="estimate_content_length" />
|
|
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
|
app:selectable="false"
|
|
|
|
|
app:summary="@string/settings_summary_transcoding_estimate_content_length" />
|
2020-11-20 15:38:08 +01:00
|
|
|
</PreferenceCategory>
|
2021-04-15 10:37:08 +02:00
|
|
|
|
2023-08-13 23:17:05 +02:00
|
|
|
<PreferenceCategory app:title="@string/settings_title_transcoding_download">
|
|
|
|
|
<Preference
|
|
|
|
|
app:selectable="false"
|
|
|
|
|
app:summary="@string/settings_summary_transcoding_download" />
|
|
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_audio_transcode_download_title"
|
|
|
|
|
android:defaultValue="false"
|
|
|
|
|
android:summary="@string/settings_audio_transcode_download_summary"
|
|
|
|
|
android:key="audio_transcode_download" />
|
|
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_audio_transcode_download_priority_title"
|
|
|
|
|
android:defaultValue="false"
|
|
|
|
|
android:summary="@string/settings_audio_transcode_download_priority_summary"
|
|
|
|
|
android:key="audio_transcode_download_priority" />
|
|
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
|
app:defaultValue="raw"
|
|
|
|
|
app:dialogTitle="@string/settings_audio_transcode_format_download"
|
|
|
|
|
app:entries="@array/audio_transcode_format_download_list_titles"
|
|
|
|
|
app:entryValues="@array/audio_transcode_format_download_list_values"
|
|
|
|
|
app:key="audio_transcode_format_download"
|
|
|
|
|
app:title="@string/settings_audio_transcode_format_download"
|
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
|
app:defaultValue="0"
|
|
|
|
|
app:dialogTitle="@string/settings_max_bitrate_download"
|
|
|
|
|
app:entries="@array/max_bitrate_download_list_titles"
|
|
|
|
|
app:entryValues="@array/max_bitrate_download_list_values"
|
|
|
|
|
app:key="max_bitrate_download"
|
|
|
|
|
app:title="@string/settings_max_bitrate_download"
|
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
2023-07-02 23:36:52 +02:00
|
|
|
<PreferenceCategory app:title="@string/settings_title_replay_gain">
|
|
|
|
|
<Preference
|
|
|
|
|
app:selectable="false"
|
|
|
|
|
app:summary="@string/settings_summary_replay_gain" />
|
|
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
|
app:defaultValue="disabled"
|
|
|
|
|
app:dialogTitle="@string/settings_replay_gain"
|
|
|
|
|
app:entries="@array/replay_gain_titles"
|
|
|
|
|
app:entryValues="@array/replay_gain_values"
|
|
|
|
|
app:key="replay_gain_mode"
|
|
|
|
|
app:title="@string/settings_replay_gain"
|
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
2023-11-29 19:21:42 +01:00
|
|
|
<PreferenceCategory app:title="@string/settings_title_rating">
|
|
|
|
|
<SeekBarPreference
|
|
|
|
|
android:key="min_star_rating"
|
|
|
|
|
app:defaultValue="0"
|
|
|
|
|
app:min="0"
|
|
|
|
|
android:max="4"
|
|
|
|
|
app:seekBarIncrement="1"
|
|
|
|
|
app:showSeekBarValue="true"
|
|
|
|
|
app:summary="@string/settings_summary_skip_min_star_rating"
|
|
|
|
|
app:title="@string/settings_title_skip_min_star_rating" />
|
|
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
2023-11-26 16:39:05 +01:00
|
|
|
<PreferenceCategory app:title="@string/settings_title_scrobble">
|
|
|
|
|
<Preference
|
|
|
|
|
app:selectable="false"
|
|
|
|
|
app:summary="@string/settings_summary_scrobble" />
|
|
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
|
app:selectable="false"
|
|
|
|
|
app:summary="@string/settings_sub_summary_scrobble" />
|
|
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_scrobble_title"
|
|
|
|
|
android:defaultValue="true"
|
|
|
|
|
android:key="scrobbling" />
|
|
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
2023-09-17 18:51:22 +02:00
|
|
|
<PreferenceCategory app:title="@string/settings_title_share">
|
|
|
|
|
<Preference
|
|
|
|
|
app:selectable="false"
|
|
|
|
|
app:summary="@string/settings_summary_share" />
|
|
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_share_title"
|
|
|
|
|
android:defaultValue="false"
|
|
|
|
|
android:key="share" />
|
|
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
2023-03-14 11:55:35 +01:00
|
|
|
<PreferenceCategory app:title="@string/settings_title_syncing">
|
|
|
|
|
<Preference
|
|
|
|
|
app:selectable="false"
|
|
|
|
|
app:summary="@string/settings_summary_syncing" />
|
|
|
|
|
|
|
|
|
|
<SwitchPreference
|
|
|
|
|
android:title="@string/settings_queue_syncing_title"
|
|
|
|
|
android:defaultValue="false"
|
2023-06-25 22:12:45 +02:00
|
|
|
android:summary="@string/settings_queue_syncing_summary"
|
2023-03-14 11:55:35 +01:00
|
|
|
android:key="queue_syncing" />
|
|
|
|
|
|
|
|
|
|
<ListPreference
|
|
|
|
|
app:defaultValue="5"
|
|
|
|
|
app:dialogTitle="@string/settings_queue_syncing_countdown"
|
|
|
|
|
app:entries="@array/queue_syncing_countdown_titles"
|
|
|
|
|
app:entryValues="@array/queue_syncing_countdown_values"
|
|
|
|
|
app:key="queue_syncing_countdown"
|
|
|
|
|
app:title="@string/settings_queue_syncing_countdown"
|
|
|
|
|
app:useSimpleSummaryProvider="true" />
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
2021-09-04 19:20:52 +02:00
|
|
|
<PreferenceCategory app:title="@string/settings_about_title">
|
2021-04-15 10:37:08 +02:00
|
|
|
<Preference
|
|
|
|
|
app:selectable="false"
|
2021-09-04 19:20:52 +02:00
|
|
|
app:summary="@string/settings_about_summary" />
|
2021-04-15 10:37:08 +02:00
|
|
|
|
|
|
|
|
<Preference
|
2023-07-02 19:59:03 +02:00
|
|
|
android:key="version"
|
2021-09-04 19:20:52 +02:00
|
|
|
app:summary="@string/settings_version_summary"
|
|
|
|
|
app:title="@string/settings_version_title" />
|
2021-04-15 10:37:08 +02:00
|
|
|
|
|
|
|
|
<Preference
|
2021-09-04 19:20:52 +02:00
|
|
|
app:summary="@string/settings_github_summary"
|
|
|
|
|
app:title="@string/settings_github_title">
|
2021-04-15 10:37:08 +02:00
|
|
|
<intent
|
|
|
|
|
android:action="android.intent.action.VIEW"
|
2021-09-04 19:20:52 +02:00
|
|
|
android:data="@string/settings_github_link" />
|
2021-04-15 10:37:08 +02:00
|
|
|
</Preference>
|
2022-01-15 17:09:23 +01:00
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
|
app:summary="@string/undraw_thanks"
|
|
|
|
|
app:title="@string/undraw_page">
|
|
|
|
|
<intent
|
|
|
|
|
android:action="android.intent.action.VIEW"
|
|
|
|
|
android:data="@string/undraw_url" />
|
|
|
|
|
</Preference>
|
2021-04-15 10:37:08 +02:00
|
|
|
</PreferenceCategory>
|
2020-11-20 15:38:08 +01:00
|
|
|
</PreferenceScreen>
|