Skip to content

Commit

Permalink
specify library version explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPierce committed Jun 29, 2024
1 parent 68bc121 commit d8bb9c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 2 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[versions]
compose = "1.6.8"
kotlin = "2.0.0"
kotlinxBenchmark = "0.4.10"
agp = "8.5.0"
Expand All @@ -23,7 +24,7 @@ androidx-benchmark-junit4 = { group = "androidx.benchmark", name = "benchmark-ju
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
androidx-runner = { group = "androidx.test", name = "runner", version.ref = "runner" }
compose-bom = { group = "androidx.compose", name = "compose-bom", version = "2024.06.00" }
compose-runtime = { group = "androidx.compose.runtime", name = "runtime" }
compose-runtime = { group = "androidx.compose.runtime", name = "runtime", version.ref = "compose" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
koin-core = { module = "io.insert-koin:koin-core", version = "3.5.6" }
kotlinx-benchmark = { module = "org.jetbrains.kotlinx:kotlinx-benchmark-runtime", version.ref = "kotlinxBenchmark" }
Expand Down
3 changes: 0 additions & 3 deletions kinject-compose/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import org.gradle.kotlin.dsl.support.kotlinCompilerOptions

plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
Expand All @@ -24,6 +22,5 @@ composeCompiler {

dependencies {
implementation(project(":kinject"))
implementation(platform(libs.compose.bom))
implementation(libs.compose.runtime)
}

0 comments on commit d8bb9c0

Please sign in to comment.