Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrivoruchko committed Nov 7, 2020
1 parent 82ff0e9 commit d0cf9f0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
14 changes: 7 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand All @@ -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")
Expand Down
6 changes: 3 additions & 3 deletions data/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand All @@ -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")
}

0 comments on commit d0cf9f0

Please sign in to comment.