feat: MVP of MediaSessionCompat Android 13+ integration

This commit is contained in:
2026-07-27 00:16:46 -04:00
parent 2cf02ddcea
commit 1029586c6d
12 changed files with 538 additions and 82 deletions
+2
View File
@@ -10,6 +10,7 @@ activityCompose = "1.9.3"
composeBom = "2024.10.01" # Compose Bill-of-Materials: pins all Compose lib versions together
coroutines = "1.9.0" # kotlinx-coroutines (async I/O + Flow for the MPD client)
datastore = "1.1.1" # Jetpack DataStore (persisting connection settings)
media = "1.7.0" # MediaSessionCompat: OS media session, notification, cast-style volume
junit = "4.13.2"
[libraries]
@@ -27,6 +28,7 @@ androidx-material3 = { group = "androidx.compose.material3", name = "material3"
androidx-material-icons-extended = { group = "androidx.compose.material", name = "material-icons-extended" }
kotlinx-coroutines-android = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-android", version.ref = "coroutines" }
androidx-datastore-preferences = { group = "androidx.datastore", name = "datastore-preferences", version.ref = "datastore" }
androidx-media = { group = "androidx.media", name = "media", version.ref = "media" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
[plugins]