February 2020
Intermediate to advanced
412 pages
9h 36m
English
Now that the hard part is over and you have Retrolambda set up, all that is left for the configuration is to bring in RxJava and RxAndroid. Another set of libraries to add to your stack is Jake Wharton's RxBinding (https://github.com/JakeWharton/RxBinding), which streamlines RxJava usage for Android UI controls.
Add these three libraries to your dependencies block, { }, for your module (not the one inside the buildscript block, { }!):
implementation 'io.reactivex.rxjava2:rxjava:2.2.2'implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'implementation 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
So the following should now be your full dependencies block content:
dependencies { implementation fileTree(dir: Read now
Unlock full access