Skip to content

Commit 54d60b1

Browse files
committed
Add direct dependency to kotlin stdlib-common
1 parent 3ff1d9f commit 54d60b1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

gradle/libs.versions.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ compiler-testing-core = { module = "dev.zacsweers.kctfork:core", version.ref = "
2020
compiler-testing-ksp = { module = "dev.zacsweers.kctfork:ksp", version.ref = "compilerTesting" }
2121
featureDelivery = { module = "com.google.android.play:feature-delivery-ktx", version = "2.1.0"}
2222
junit = { module = "junit:junit", version = "4.13.2" }
23+
kotlin-stdlib-common = { module = "org.jetbrains.kotlin:kotlin-stdlib-common", version.ref = "kotlin" }
2324
kotlin-gradle = { module = "org.jetbrains.kotlin:kotlin-gradle-plugin", version.ref = "kotlin" }
2425
kotlin-compiler = { module = "org.jetbrains.kotlin:kotlin-compiler-embeddable", version.ref = "kotlin" }
2526
kotlinPoet-core = { module = "com.squareup:kotlinpoet", version.ref = "kotlinPoet" }

sample/app/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,5 @@ dependencies {
4343
implementation libs.compose.material
4444
implementation libs.compose.activity
4545
implementation libs.featureDelivery
46-
}
46+
implementation libs.kotlin.stdlib.common
47+
}

0 commit comments

Comments
 (0)