refactor(core:service): Move Android Service implementations to core:service

This commit is contained in:
James Rich 2026-03-17 10:57:00 -05:00
parent 7593d2b0a4
commit 965def06b2
25 changed files with 57 additions and 50 deletions

View file

@ -52,4 +52,9 @@ data class DeviceVersion(val asString: String) : Comparable<DeviceVersion> {
}
override fun compareTo(other: DeviceVersion): Int = asInt.compareTo(other.asInt)
companion object {
const val MIN_FW_VERSION = "2.5.14"
const val ABS_MIN_FW_VERSION = "2.3.15"
}
}