Implementation of song/album/artist page list

This commit is contained in:
CappielloAntonio 2021-07-30 17:12:08 +02:00
parent 051ba23b58
commit b5eaa1e523
17 changed files with 550 additions and 40 deletions

View file

@ -13,7 +13,7 @@ import java.util.List;
@Dao
public interface DownloadDao {
@Query("SELECT * FROM download")
LiveData<List<Download>> getAll();
List<Download> getAll();
@Query("SELECT * FROM download LIMIT :size")
LiveData<List<Download>> getSample(int size);