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

Performance issues with artwork-related tasks #39

Closed adam-codersgu closed 1 year ago

adam-codersgu commented 1 year ago

Two issues that should be addressed in this ticket: 1 There is a lag when new album artwork is saved. Address this e.g. using coroutines. Also need to check if playlist artwork updates are affected.

  1. The artwork displayed in the notification is not always a square. Need to see if there's a way to address this, but note the metadata bitmap is used elsewhere in the app so perhaps best to apply any changes to the notification large image only. For example, some kind of centerCrop mechanism similar to that used in Glide? Or better yet, find a way to use Glide in the notification (I don't think this is possible)
adam-codersgu commented 1 year ago

Working on branch enhancement/artwork_tasks

adam-codersgu commented 1 year ago

Completed and merged https://github.com/adam-codersgu/supernova/pull/54