feat: created contextual menu for filtering and grouping downloaded songs

This commit is contained in:
antonio 2023-08-11 16:23:01 +02:00
parent 37ffb88d67
commit 06e2729aca
2 changed files with 25 additions and 0 deletions

View file

@ -76,6 +76,12 @@ object Constants {
const val DOWNLOAD_URI = "rest/download"
const val DOWNLOAD_TYPE_TRACK = "download_type_track"
const val DOWNLOAD_TYPE_ALBUM = "download_type_album"
const val DOWNLOAD_TYPE_ARTIST = "download_type_artist"
const val DOWNLOAD_TYPE_GENRE = "download_type_genre"
const val DOWNLOAD_TYPE_YEAR = "download_type_year"
const val PLAYABLE_MEDIA_LIMIT = 100
const val PRE_PLAYABLE_MEDIA = 15
}