mirror of
https://github.com/Michatec/Radio.git
synced 2026-03-31 23:46:28 +02:00
* Implement initial Android TV support, including `LEANBACK_LAUNCHER` intent filter, hardware feature declarations, and television-specific layouts for the player, search results, and dialogs. * Add a splash/loading screen for the TV interface and a dedicated `SplashTheme`. * Improve DPAD navigation by adding `OnKeyListener` for station cards and allowing focus on internal elements. * Update `LayoutHolder` and `PlayerFragment` to handle TV layouts and add previous/next station navigation buttons. * Adjust `PreferencesHelper` to disable station editing by default on TV devices. * Update `androidx.media3` to v1.10.0, `work-runtime-ktx` to v2.11.2, and add `androidx.leanback` dependency. * Bump `versionCode` to 144 and `versionName` to 14.4. * Refactor `PlayerService` to simplify sleep timer cancellation logic. * Remove stale copyright headers and license comments from several Kotlin files.
43 lines
2.3 KiB
TOML
43 lines
2.3 KiB
TOML
[versions]
|
|
activityKtx = "1.13.0"
|
|
agp = "9.1.0"
|
|
coreKtx = "1.18.0"
|
|
freedroidwarn = "V1.10"
|
|
gson = "2.13.2"
|
|
kotlin = "2.3.20"
|
|
leanback = "1.2.0"
|
|
material = "1.13.0"
|
|
material3 = "1.4.0"
|
|
media = "1.7.1"
|
|
media3 = "1.10.0"
|
|
navigation = "2.9.7"
|
|
paletteKtx = "1.0.0"
|
|
preferenceKtx = "1.2.1"
|
|
volley = "1.2.1"
|
|
workRuntimeKtx = "2.11.2"
|
|
|
|
[libraries]
|
|
activity-ktx = { group = "androidx.activity", name = "activity-ktx", version.ref = "activityKtx" }
|
|
core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
|
freedroidwarn = { group = "com.github.woheller69", name = "FreeDroidWarn", version.ref = "freedroidwarn" }
|
|
gson = { group = "com.google.code.gson", name = "gson", version.ref = "gson" }
|
|
leanback = { group = "androidx.leanback", name = "leanback", version.ref = "leanback" }
|
|
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
|
|
material3 = { group = "androidx.compose.material3", name = "material3", version.ref = "material3" }
|
|
media = { group = "androidx.media", name = "media", version.ref = "media" }
|
|
media3-datasource-okhttp = { group = "androidx.media3", name = "media3-datasource-okhttp", version.ref = "media3" }
|
|
media3-exoplayer = { group = "androidx.media3", name = "media3-exoplayer", version.ref = "media3" }
|
|
media3-exoplayer-hls = { group = "androidx.media3", name = "media3-exoplayer-hls", version.ref = "media3" }
|
|
media3-session = { group = "androidx.media3", name = "media3-session", version.ref = "media3" }
|
|
navigation-fragment-ktx = { group = "androidx.navigation", name = "navigation-fragment-ktx", version.ref = "navigation" }
|
|
navigation-ui-ktx = { group = "androidx.navigation", name = "navigation-ui-ktx", version.ref = "navigation" }
|
|
palette-ktx = { group = "androidx.palette", name = "palette-ktx", version.ref = "paletteKtx" }
|
|
preference-ktx = { group = "androidx.preference", name = "preference-ktx", version.ref = "preferenceKtx" }
|
|
volley = { group = "com.android.volley", name = "volley", version.ref = "volley" }
|
|
work-runtime-ktx = { group = "androidx.work", name = "work-runtime-ktx", version.ref = "workRuntimeKtx" }
|
|
|
|
[plugins]
|
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
android-library = { id = "com.android.library", version.ref = "agp" }
|
|
jetbrains-kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|