1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2024-12-23 07:38:04 +01:00

kotlin 1.3.30, kotlinx-coroutines 1.2.0, firebase-messaging 17.6.0

This commit is contained in:
tateisu 2019-04-13 08:07:11 +09:00
parent a45c5805dc
commit 06fbd66e7a
4 changed files with 10 additions and 7 deletions

View File

@ -29,8 +29,8 @@ repositories {
dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'
androidTestImplementation 'androidx.test:runner:1.2.0-alpha03'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0-alpha03'
api project(':apng')
// 'api'

View File

@ -86,7 +86,7 @@ dependencies {
// https://firebase.google.com/support/release-notes/android
implementation "com.google.firebase:firebase-core:16.0.8"
implementation "com.google.firebase:firebase-messaging:17.5.0"
implementation "com.google.firebase:firebase-messaging:17.6.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"

View File

@ -5,8 +5,8 @@ buildscript {
ext.androidx_version= '1.0.0'
ext.appcompat_version='1.0.2'
ext.kotlin_version = '1.3.21'
ext.kotlinx_coroutines_version = '1.0.1'
ext.kotlin_version = '1.3.30'
ext.kotlinx_coroutines_version = '1.2.0'
ext.anko_version='0.10.8'
repositories {

View File

@ -23,6 +23,9 @@ android {
}
}
packagingOptions {
pickFirst("META-INF/atomicfu.kotlin_module")
}
}
kotlin {
@ -38,8 +41,8 @@ dependencies {
implementation "androidx.appcompat:appcompat:$appcompat_version"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.2-alpha01'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.2-alpha01'
androidTestImplementation 'androidx.test:runner:1.2.0-alpha03'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0-alpha03'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinx_coroutines_version"