June 2017
Intermediate to advanced
400 pages
8h 44m
English
In this chapter, we will also be using RxJava as well as an extension library called RxKotlin. For Gradle, add these two libraries as your dependencies like this:
compile 'io.reactivex.rxjava2:rxjava:2.1.0' compile 'io.reactivex.rxjava2:rxkotlin:2.0.2'
For Maven, set them up like this:
<dependency> <groupId>io.reactivex.rxjava2</groupId> <artifactId>rxjava</artifactId> <version>2.1.0</version> </dependency> <dependency> <groupId>io.reactivex.rxjava2</groupId> <artifactId>rxkotlin</artifactId> <version>2.0.2</version> </dependency>
Read now
Unlock full access