Tutorial by Examples

This is literally the only thing you need to start using RxJava on Android. Include RxJava and RxAndroid in your gradle dependencies: // use the last version compile 'io.reactivex.rxjava2:rxjava:2.1.1' compile 'io.reactivex.rxjava2:rxandroid:2.0.1' RxAndroid main addition to RxJava is a Sche...
The RxLifecycle library makes it easier binding observable subscriptions to Android activities and fragment lifecycle. Keep in mind that forgetting to unsubscribe an Observable can cause memory leaks and keeping your activity / fragment alive event after it has been destroyed by the system. Add th...
This library allows the usage of RxJava with the new Android M permission model. Add the library to the dependencies: Rxjava dependencies { compile 'com.tbruyelle.rxpermissions:rxpermissions:0.8.0@aar' } Rxjava2 dependencies { compile 'com.tbruyelle.rxpermissions2:rxpermissions:0.8...

Page 1 of 1