feat: add album art resolution with MusicBrainz and fallback chain

Made-with: Cursor
This commit is contained in:
cottongin
2026-03-10 03:07:32 -04:00
parent 20daa86b52
commit 89b58477c9
8 changed files with 333 additions and 4 deletions

View File

@@ -13,6 +13,7 @@ material = "1.11.0"
junit = "4.13.2"
mockk = "1.13.16"
turbine = "1.2.0"
coil = "3.1.0"
[libraries]
compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "compose-bom" }
@@ -42,6 +43,9 @@ material = { group = "com.google.android.material", name = "material", version.r
junit = { group = "junit", name = "junit", version.ref = "junit" }
mockk = { group = "io.mockk", name = "mockk", version.ref = "mockk" }
turbine = { group = "app.cash.turbine", name = "turbine", version.ref = "turbine" }
coil-compose = { group = "io.coil-kt.coil3", name = "coil-compose", version.ref = "coil" }
coil-network = { group = "io.coil-kt.coil3", name = "coil-network-okhttp", version.ref = "coil" }
json = { group = "org.json", name = "json", version = "20240303" }
[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }