Skip to content
This repository was archived by the owner on Jul 16, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ allprojects {
useVersion(supportVersion)
}
else -> when {
requested.name.startsWith("kotlinx-coroutines") -> useVersion(coroutinesVersion)
requested.name.startsWith("kotlinx-coroutines") ->
useVersion(coroutinesVersion)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Libs.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ private const val smartRefreshLayoutVersion = "2.0.3"
private const val glideVersion = "4.12.0"
private const val coilVersion = "1.4.0"
private const val roomVersion = "2.4.1"
private const val hiltVersion = "2.40.1"
private const val hiltVersion = "2.40.5"
private const val chuckerVersion = "3.5.2"

const val appCompatVersion = "1.4.1"
Expand Down
1 change: 1 addition & 0 deletions gradle/extra.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ configurations.all {
useTarget("${requested.group}:${requested.name.replace("jre", "jdk")}:${kotlinVersion}")
}
requested.group == "org.jetbrains.kotlin" -> useVersion(kotlinVersion)
requested.name == "javapoet" -> useVersion("1.13.0")
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

}
}
}
Expand Down