You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
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 to fun observe(context: Context): Flowable<BatteryState> method in RxBattery class in order to call static method from Java modules without need to explicitly call Companion object
added KotlinX to sample Kotlin app
added project logo created by @Yasujizr
updates
fixed typo in const val in RxBattery class
API-breaking change: In BatteryState data class, renamed variable status to statusCode, plugged to pluggedCode and health to healthCode
removals
API-breaking change: Removed RxBatteryFactory class