Skip to content

Commit

Permalink
Merge pull request #15 from taetae98coding/upgrade_lifecycle
Browse files Browse the repository at this point in the history
Lifecycle dependency upgrade 2.8.0-rc01
  • Loading branch information
nbransby authored May 14, 2024
2 parents 8e82acb + ac95730 commit 347421a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ dependencies {
aar("com.google.firebase:firebase-config:21.6.0")
aar("com.google.firebase:firebase-installations:17.2.0")
// extracted aar dependencies
api(fileTree(mapOf("dir" to "build/jar", "include" to listOf("*.jar"))))
// exclude lifecycle libs due to https://github.com/GitLiveApp/firebase-java-sdk/pull/15 - remove the exclude once the dependencies in the aars are updated to the required version
api(fileTree(mapOf("dir" to "build/jar", "include" to listOf("*.jar"), "exclude" to listOf("lifecycle-*"))))
// polyfill dependencies
implementation("org.jetbrains.kotlin:kotlin-stdlib")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3")
Expand All @@ -165,12 +166,12 @@ dependencies {
// firebase dependencies
implementation("javax.inject:javax.inject:1")
implementation("com.squareup.okhttp3:okhttp:3.12.13")
implementation("android.arch.lifecycle:common:1.1.1")
implementation("io.grpc:grpc-protobuf-lite:1.52.1")
implementation("io.grpc:grpc-stub:1.52.1")
implementation("androidx.collection:collection:1.2.0")
implementation("androidx.lifecycle:lifecycle-common:2.4.0")
implementation("io.grpc:grpc-okhttp:1.52.1")
implementation("androidx.lifecycle:lifecycle-common:2.8.0-rc01")
implementation("androidx.lifecycle:lifecycle-viewmodel:2.8.0-rc01")
}

tasks.named("publishToMavenLocal").configure {
Expand Down

0 comments on commit 347421a

Please sign in to comment.