From 2228a0e67d065ebf19af82836f376ca992aae7c0 Mon Sep 17 00:00:00 2001 From: Tobias Rohloff Date: Tue, 10 Jul 2018 16:31:54 +0200 Subject: [PATCH] Update dependencies --- .travis.yml | 2 +- app/dependencies.gradle | 8 ++++---- build.gradle | 10 +++++++--- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4eb15d049..38dc639d2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ android: - tools - platform-tools - tools # called twice to get the newest android sdk tools - - build-tools-28.0.0 + - build-tools-28.0.1 - android-27 - extra-android-m2repository - extra-google-m2repository diff --git a/app/dependencies.gradle b/app/dependencies.gradle index 87d2168b7..cd65b7123 100644 --- a/app/dependencies.gradle +++ b/app/dependencies.gradle @@ -2,8 +2,8 @@ dependencies { // kotlin implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:${kotlinVersion}" implementation "org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}" - implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.23.3" - implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:0.23.3" + implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.23.4" + implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:0.23.4" implementation "ru.gildor.coroutines:kotlin-coroutines-retrofit:0.11.0" // networking @@ -60,8 +60,8 @@ dependencies { implementation "com.google.android.gms:play-services-gcm:15.0.1" // firebase - implementation "com.crashlytics.sdk.android:crashlytics:2.9.3" - implementation "com.google.firebase:firebase-core:16.0.0" + implementation "com.crashlytics.sdk.android:crashlytics:2.9.4" + implementation "com.google.firebase:firebase-core:16.0.1" // support libraries def supportVersion = '27.1.1' diff --git a/build.gradle b/build.gradle index 8be4c6247..ca545ecea 100644 --- a/build.gradle +++ b/build.gradle @@ -3,8 +3,8 @@ buildscript { ext { // shared build properties - kotlinVersion = '1.2.50' - buildToolsVersion = '28.0.0' + kotlinVersion = '1.2.51' + buildToolsVersion = '28.0.1' minSdkVersion = 16 targetSdkVersion = 27 compileSdkVersion = 27 @@ -25,10 +25,14 @@ buildscript { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}" classpath "com.google.gms:google-services:4.0.1" classpath "io.fabric.tools:gradle:1.25.4" - classpath "io.realm:realm-gradle-plugin:5.2.0" + classpath "io.realm:realm-gradle-plugin:5.3.1" } } +plugins { + id 'com.github.ben-manes.versions' version '0.20.0' +} + allprojects { repositories { jcenter()