21 Aug 2018
- additions
- added the following enums:
Status
,Plugged
,Health
- added the following methods to
BatteryState
data class:fun status(): Status { ... }
fun plugged(): Plugged { ... }
fun health(): Health { ... }
- added
@JvmStatic
annotation tofun observe(context: Context): Flowable<BatteryState>
method inRxBattery
class in order to call static method from Java modules without need to explicitly callCompanion
object - added KotlinX to sample Kotlin app
- added project logo created by @Yasujizr
- added the following enums:
- updates
- fixed typo in const val in
RxBattery
class - API-breaking change: In
BatteryState
data class, renamed variablestatus
tostatusCode
,plugged
topluggedCode
andhealth
tohealthCode
- fixed typo in const val in
- removals
- API-breaking change: Removed
RxBatteryFactory
class
- API-breaking change: Removed
17 Aug 2018
The first release of the library.