We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a334d6 commit cb577fcCopy full SHA for cb577fc
build.gradle.kts
@@ -42,8 +42,7 @@ kotlin {
42
val commonMain by getting {
43
kotlin.srcDirs("build/generated")
44
dependencies {
45
- implementation(kotlin("stdlib-common"))
46
- implementation(Serialization("runtime"))
+ api(kotlin("stdlib-common"))
47
api(Ktor("client"))
48
api(Ktor("client-logging"))
49
api(Ktor("client-core"))
@@ -60,7 +59,7 @@ kotlin {
60
59
}
61
val jvmMain by getting {
62
63
- implementation(kotlin("stdlib-jdk8"))
+ api(kotlin("stdlib-jdk8"))
64
api(Ktor("client-core-jvm"))
65
api(Ktor("client-json-jvm"))
66
api(Ktor("client-logging-jvm"))
0 commit comments