Files
capod/buildSrc/src/main/java/Versions.kt
T
darken c103c6adc9 feat(widget): Migrate from RemoteViews to Jetpack Glance
Replace the legacy AppWidgetProvider/RemoteViews implementation with Glance AppWidget for reactive updates, proper centering, and a unified render state model.

- Add BatteryGlanceWidget with collectAsState for live device/profile/upgrade data

- Add WidgetRenderState sealed class and WidgetRenderStateMapper

- Add GlanceWidgetContent (Glance composables) and ComposeWidgetPreview (config preview)

- Fix centering by passing spacing via modifier param (no trailing padding on last item)

- Remove old XML widget layouts and RemoteViews rendering code
2026-03-01 15:56:43 +01:00

33 lines
546 B
Kotlin

object Versions {
object Kotlin {
const val core = "2.2.10"
const val coroutines = "1.8.0"
}
object Dagger {
const val core = "2.57.1"
}
object AndroidX {
object Navigation {
const val core = "2.9.3"
}
}
object Compose {
const val bom = "2025.06.01"
}
object Navigation3 {
const val core = "1.0.0"
}
object Glance {
const val core = "1.2.0-rc01"
}
object Serialization {
const val core = "1.9.0"
}
}