From 4297c306b36d3f7b2e53e76800fb2a1f40a3bf0c Mon Sep 17 00:00:00 2001 From: Dan Lew Date: Sun, 29 Jul 2018 08:23:30 -0500 Subject: [PATCH] Updated dependencies Avoided updating anything past stable, though. --- .travis.yml | 4 ++-- build.gradle | 26 +++++++++++++------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index 40da072..f01aa97 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,8 @@ android: components: - tools - platform-tools - - build-tools-26.0.2 - - android-26 + - build-tools-27.0.3 + - android-27 - extra-android-m2repository jdk: oraclejdk8 diff --git a/build.gradle b/build.gradle index 3c01d7d..93c64c2 100644 --- a/build.gradle +++ b/build.gradle @@ -1,18 +1,18 @@ buildscript { ext { //version here to share between build script and projects - verKotlin = '1.1.4-3' + verKotlin = '1.2.51' } repositories { google() jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:3.0.0' + classpath 'com.android.tools.build:gradle:3.1.3' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$verKotlin" classpath "org.jetbrains.kotlin:kotlin-android-extensions:$verKotlin" - classpath 'com.github.ben-manes:gradle-versions-plugin:0.15.0' - classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' + classpath 'com.github.ben-manes:gradle-versions-plugin:0.20.0' + classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' } } @@ -25,21 +25,21 @@ apply plugin: 'com.github.ben-manes.versions' ext { minSdkVersion = 14 - compileSdkVersion = 26 + compileSdkVersion = 27 targetSdkVersion = compileSdkVersion - buildToolsVersion = '26.0.2' + buildToolsVersion = '27.0.3' - supportLibVersion = '26.0.2' - lifecycleVersion = '1.0.0' - lifecycleRuntimeVersion = '1.0.3' + supportLibVersion = '27.1.1' + lifecycleVersion = '1.1.1' + lifecycleRuntimeVersion = '1.1.1' sourceCompatibilityVersion = JavaVersion.VERSION_1_7 targetCompatibilityVersion = JavaVersion.VERSION_1_7 // Define all dependencies in the base project, to unify & make it easy to update - rxJava = 'io.reactivex.rxjava2:rxjava:2.1.3' - rxAndroid = 'io.reactivex.rxjava2:rxandroid:2.0.1' - navi = 'com.trello.navi2:navi:2.0' + rxJava = 'io.reactivex.rxjava2:rxjava:2.1.17' + rxAndroid = 'io.reactivex.rxjava2:rxandroid:2.0.2' + navi = 'com.trello.navi2:navi:2.0.1' lifecycle = "android.arch.lifecycle:runtime:$lifecycleRuntimeVersion" lifecycleProcessor = "android.arch.lifecycle:compiler:$lifecycleVersion" lifecycleExtensions = "android.arch.lifecycle:extensions:$lifecycleVersion" @@ -49,5 +49,5 @@ ext { supportAnnotations = "com.android.support:support-annotations:$supportLibVersion" jsr305Annotations = 'com.google.code.findbugs:jsr305:3.0.2' junit = 'junit:junit:4.12' - robolectric = 'org.robolectric:robolectric:3.4.2' + robolectric = 'org.robolectric:robolectric:3.8' }