adam-codersgu / supernova

A Kotlin-based Android application that allows the user to play music from their device while custom animations fall over the album artwork of the currently playing song.
0 stars 0 forks source link

The ability to delete songs #36

Closed adam-codersgu closed 1 year ago

adam-codersgu commented 1 year ago

Should have the ability to delete songs. Note this should work for all API levels that the app targets, and the underlying file should also be deleted (note scoped storage sometimes plays up and just temporarily deletes the item from the media store but not device).

See the Camera app that you created for the seven android apps book. Also see https://developer.android.com/training/data-storage/shared/media#remove-item

adam-codersgu commented 1 year ago

Working on branch feature/delete_songs

adam-codersgu commented 1 year ago

Ideally the feature would allow the deletion of single or multiple songs

adam-codersgu commented 1 year ago

This also needs to be tested on multiple API levels

adam-codersgu commented 1 year ago

Implemented and merged https://github.com/adam-codersgu/supernova/pull/50