From 9e0cb29182c1e2624580d13dc0f9f26b1e89d78f Mon Sep 17 00:00:00 2001 From: serv-inc Date: Sun, 4 Nov 2018 04:29:33 +0100 Subject: [PATCH] Correct rxjava2 gradle dependency (and change `compile` to `implementation` - as of e.g. https://stackoverflow.com/questions/44493378/whats-the-difference-between-implementation-and-compile-in-gradle) --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ff26634c..39176538 100644 --- a/README.md +++ b/README.md @@ -208,10 +208,10 @@ along with Google Play Services and RxJava. ```groovy dependencies { ... - compile 'pl.charmas.android:android-reactive-location2:2.1@aar' - compile 'com.google.android.gms:play-services-location:11.0.4' //you can use newer GMS version if you need - compile 'com.google.android.gms:play-services-places:11.0.4' - compile 'io.reactivex:rxjava:2.0.5' //you can override RxJava version if you need + implementation 'pl.charmas.android:android-reactive-location2:2.1@aar' + implementation 'com.google.android.gms:play-services-location:11.0.4' //you can use newer GMS version if you need + implementation 'com.google.android.gms:play-services-places:11.0.4' + implementation 'io.reactivex.rxjava2:rxjava:2.0.5' //you can override RxJava2 version if you need } ``` @@ -229,7 +229,7 @@ following dependency: ``` -It may be necessary to add google play services and rxanroid dependency as well. +It may be necessary to add google play services and rxandroid dependency as well. Sample ------