Implemented rating system for song, album and artist (album and artist do not retrieve rating from server)

This commit is contained in:
CappielloAntonio 2021-08-13 17:29:37 +02:00
parent 055ac44cf6
commit e2ddbdf6c9
15 changed files with 303 additions and 7 deletions

View file

@ -35,6 +35,11 @@ public class PlayerBottomSheetViewModel extends AndroidViewModel {
return queueSong;
}
public Song getCurrentSong() {
return MusicPlayerRemote.getCurrentSong();
}
public void setFavorite() {
Song song = MusicPlayerRemote.getCurrentSong();