Skip to content

Lifecycle dependency upgrade 2.8.0-rc01 #15

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading