mirror of
https://github.com/d4rken-org/capod.git
synced 2026-09-15 10:46:12 -04:00
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
33 lines
546 B
Kotlin
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"
|
|
}
|
|
}
|