From d0cf9f09f01326d9f832cf6320e4f3f6f50982e8 Mon Sep 17 00:00:00 2001 From: Dmitriy Krivoruchko Date: Sat, 7 Nov 2020 16:35:08 +0200 Subject: [PATCH] Update dependencies --- README.md | 3 +-- app/build.gradle | 14 +++++++------- data/build.gradle | 6 +++--- 3 files changed, 11 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 0fcdc0ad..f34c7264 100644 --- a/README.md +++ b/README.md @@ -35,8 +35,7 @@ Application uses Android Cast feature and requires at least Android 5.0 to run. ### Known problems -1. On some devices, system returns image in unknown format. Mostly on devices with no official Android 5.0 or above. Possible Android bug. App will show an error message. No solution available. -2. On some devices no notification icon showing but notification is present. Android bug: 213309. +1. On some devices no notification icon showing but notification is present. Android bug: 213309. ### Screenshots diff --git a/app/build.gradle b/app/build.gradle index 387f3090..dfe7dbcc 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -70,21 +70,21 @@ android { kotlinOptions { jvmTarget = JavaVersion.VERSION_1_8.toString() - freeCompilerArgs += ["-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi"] +// freeCompilerArgs += ["-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi"] } } dependencies { implementation(project(":data")) - implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0-M1") - implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.0-M1") + implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1") + implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.1") implementation("com.google.android.material:material:1.2.1") implementation("androidx.appcompat:appcompat:1.2.0") implementation("androidx.fragment:fragment-ktx:1.2.5") implementation("androidx.recyclerview:recyclerview:1.1.0") - implementation("androidx.constraintlayout:constraintlayout:2.0.2") + implementation("androidx.constraintlayout:constraintlayout:2.0.4") implementation("androidx.navigation:navigation-fragment-ktx:2.3.1") implementation("androidx.navigation:navigation-ui-ktx:2.3.1") implementation("androidx.viewpager2:viewpager2:1.0.0") @@ -101,13 +101,13 @@ dependencies { implementation("org.koin:koin-android:2.1.6") implementation("com.github.iamironz:binaryprefs:1.0.1") - implementation("com.elvishew:xlog:1.6.1") + implementation("com.elvishew:xlog:1.7.0") - firebaseImplementation("com.google.android.play:core:1.8.2") + firebaseImplementation("com.google.android.play:core:1.8.3") firebaseImplementation("com.google.android.play:core-ktx:1.8.1") { exclude group: "org.jetbrains.kotlin", module: "kotlin-stdlib-jdk7" } - firebaseReleaseImplementation("com.google.firebase:firebase-analytics:17.6.0") + firebaseReleaseImplementation("com.google.firebase:firebase-analytics:18.0.0") firebaseReleaseImplementation("com.google.firebase:firebase-crashlytics:17.2.2") debugImplementation("com.squareup.leakcanary:leakcanary-android:2.5") diff --git a/data/build.gradle b/data/build.gradle index 212d8a6f..da687591 100644 --- a/data/build.gradle +++ b/data/build.gradle @@ -23,13 +23,13 @@ android { kotlinOptions { jvmTarget = JavaVersion.VERSION_1_8.toString() - freeCompilerArgs += ["-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi"] +// freeCompilerArgs += ["-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi"] } } dependencies { implementation("org.jetbrains.kotlin:kotlin-android-extensions-runtime:1.4.10") - implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.0-M1") + implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1") implementation("androidx.core:core-ktx:1.3.2") implementation("androidx.arch.core:core-common:2.1.0") @@ -47,5 +47,5 @@ dependencies { implementation("com.google.zxing:core:3.3.3") implementation("com.github.iamironz:binaryprefs:1.0.1") - implementation("com.elvishew:xlog:1.6.1") + implementation("com.elvishew:xlog:1.7.0") } \ No newline at end of file