From deff9f7cddba31896604cde726b9599a41e87342 Mon Sep 17 00:00:00 2001 From: Denis Karmyshakov Date: Wed, 4 Oct 2017 12:29:00 +0300 Subject: [PATCH 1/2] Versions in constants --- build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index b957115..c15d55f 100644 --- a/build.gradle +++ b/build.gradle @@ -2,8 +2,8 @@ apply plugin: 'com.android.library' apply plugin: 'me.tatarka.retrolambda' android { - compileSdkVersion 25 - buildToolsVersion '25.0.3' + compileSdkVersion 26 + buildToolsVersion buildTools compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 @@ -16,7 +16,7 @@ android { } dependencies { - provided 'com.android.support:support-annotations:25.4.0' - provided 'io.reactivex:rxandroid:1.2.1' - provided 'io.reactivex:rxjava:1.3.2' + provided "com.android.support:support-annotations:$supportLibraryVersion" + provided "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion" + provided "io.reactivex.rxjava2:rxjava:$rxJavaVersion" } From f20db0317e979bd0d1d56ca8171a0167d6507bfc Mon Sep 17 00:00:00 2001 From: Denis Karmyshakov Date: Wed, 4 Oct 2017 13:10:49 +0300 Subject: [PATCH 2/2] Versions in constants --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index c15d55f..3af61d0 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' apply plugin: 'me.tatarka.retrolambda' android { - compileSdkVersion 26 + compileSdkVersion compileSdk buildToolsVersion buildTools compileOptions { @@ -17,6 +17,6 @@ android { dependencies { provided "com.android.support:support-annotations:$supportLibraryVersion" - provided "io.reactivex.rxjava2:rxandroid:$rxAndroidVersion" - provided "io.reactivex.rxjava2:rxjava:$rxJavaVersion" + provided "io.reactivex:rxandroid:$rxAndroidVersion" + provided "io.reactivex:rxjava:$rxJavaVersion" }