Skip to content

Commit

Permalink
chore: use lifecycle versions that are compatible with each other
Browse files Browse the repository at this point in the history
  • Loading branch information
thatfiredev committed Mar 19, 2024
1 parent 273069a commit c9b67b5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
1 change: 0 additions & 1 deletion auth/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ dependencies {
implementation(Config.Libs.Androidx.customTabs)
implementation(Config.Libs.Androidx.constraint)

implementation(Config.Libs.Androidx.lifecycleExtensions)
annotationProcessor(Config.Libs.Androidx.lifecycleCompiler)

implementation(platform(Config.Libs.Firebase.bom))
Expand Down
11 changes: 5 additions & 6 deletions buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,13 @@ object Config {
const val cardView = "androidx.cardview:cardview:1.0.0"
const val constraint = "androidx.constraintlayout:constraintlayout:2.0.4"
const val fragment = "androidx.fragment:fragment:1.3.5"
const val lifecycleCompiler = "androidx.lifecycle:lifecycle-compiler:2.3.1"
const val lifecycleExtensions = "androidx.lifecycle:lifecycle-extensions:2.2.0"
const val lifecycleRuntime = "androidx.lifecycle:lifecycle-runtime:2.3.1"
const val lifecycleViewModel = "androidx.lifecycle:lifecycle-viewmodel:2.3.1"
const val lifecycleCompiler = "androidx.lifecycle:lifecycle-compiler:2.5.1"
const val lifecycleRuntime = "androidx.lifecycle:lifecycle-runtime:2.5.1"
const val lifecycleViewModel = "androidx.lifecycle:lifecycle-viewmodel:2.5.1"
const val legacySupportv4 = "androidx.legacy:legacy-support-v4:1.0.0"
const val multidex = "androidx.multidex:multidex:2.0.1"
const val paging = "androidx.paging:paging-runtime:3.0.0"
const val pagingRxJava = "androidx.paging:paging-rxjava3:3.0.0"
const val paging = "androidx.paging:paging-runtime:3.2.0"
const val pagingRxJava = "androidx.paging:paging-rxjava3:3.2.0"
const val recyclerView = "androidx.recyclerview:recyclerview:1.2.1"

const val materialDesign = "com.google.android.material:material:1.4.0"
Expand Down
1 change: 0 additions & 1 deletion proguard-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ dependencies {
implementation(project(":database"))
implementation(project(":storage"))

implementation(Config.Libs.Androidx.lifecycleExtensions)
}

apply(plugin = "com.google.gms.google-services")

0 comments on commit c9b67b5

Please sign in to comment.