Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasrohloff committed Jul 10, 2018
1 parent 7b62589 commit 2228a0e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions app/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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'
Expand Down
10 changes: 7 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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()
Expand Down

0 comments on commit 2228a0e

Please sign in to comment.