From c0c497d5f33884529bf74d74e941d21634519627 Mon Sep 17 00:00:00 2001 From: Mygod Date: Sun, 14 Mar 2021 20:34:03 -0400 Subject: [PATCH] Update dependencies --- build.gradle.kts | 6 +++--- mobile/build.gradle.kts | 18 +++++++++--------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 2312f3c6..450a8da8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("com.github.ben-manes.versions") version "0.36.0" + id("com.github.ben-manes.versions") version "0.38.0" } buildscript { @@ -9,9 +9,9 @@ buildscript { } dependencies { - classpath(kotlin("gradle-plugin", "1.4.21")) + classpath(kotlin("gradle-plugin", "1.4.31")) classpath("com.android.tools.build:gradle:4.1.2") - classpath("com.google.firebase:firebase-crashlytics-gradle:2.4.1") + classpath("com.google.firebase:firebase-crashlytics-gradle:2.5.1") classpath("com.google.android.gms:oss-licenses-plugin:0.10.2") classpath("com.google.gms:google-services:4.3.5") } diff --git a/mobile/build.gradle.kts b/mobile/build.gradle.kts index e829cbe2..baa05ebd 100644 --- a/mobile/build.gradle.kts +++ b/mobile/build.gradle.kts @@ -67,35 +67,35 @@ android { } dependencies { - val lifecycleVersion = "2.3.0-rc01" - val roomVersion = "2.3.0-beta01" + val lifecycleVersion = "2.3.0" + val roomVersion = "2.3.0-beta03" - coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.1.1") + coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.1.5") kapt("androidx.room:room-compiler:$roomVersion") implementation(kotlin("stdlib-jdk8")) implementation("androidx.appcompat:appcompat:1.3.0-beta01") // https://issuetracker.google.com/issues/151603528 implementation("androidx.browser:browser:1.3.0") - implementation("androidx.core:core-ktx:1.5.0-beta01") + implementation("androidx.core:core-ktx:1.5.0-beta03") implementation("androidx.emoji:emoji:1.1.0") - implementation("androidx.fragment:fragment-ktx:1.3.0-rc02") + implementation("androidx.fragment:fragment-ktx:1.3.1") implementation("androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion") implementation("androidx.lifecycle:lifecycle-livedata-ktx:$lifecycleVersion") implementation("androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion") implementation("androidx.preference:preference:1.1.1") implementation("androidx.room:room-ktx:$roomVersion") implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0") - implementation("com.android.billingclient:billing-ktx:3.0.2") + implementation("com.android.billingclient:billing-ktx:3.0.3") implementation("com.google.android.gms:play-services-oss-licenses:17.0.0") - implementation("com.google.android.material:material:1.3.0-rc01") + implementation("com.google.android.material:material:1.3.0") implementation("com.google.firebase:firebase-analytics-ktx:18.0.2") - implementation("com.google.firebase:firebase-crashlytics:17.3.1") + implementation("com.google.firebase:firebase-crashlytics:17.4.0") implementation("com.google.zxing:core:3.4.1") implementation("com.jakewharton.timber:timber:4.7.1") implementation("com.linkedin.dexmaker:dexmaker:2.28.0") implementation("com.takisoft.preferencex:preferencex-simplemenu:1.1.0") implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.3") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.2") - testImplementation("junit:junit:4.13.1") + testImplementation("junit:junit:4.13.2") androidTestImplementation("androidx.room:room-testing:$roomVersion") androidTestImplementation("androidx.test:runner:1.3.0") androidTestImplementation("androidx.test.espresso:espresso-core:3.3.0")