File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
runtime/protocol/http-client-engines/http-client-engine-default Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -16,19 +16,28 @@ kotlin {
1616 implementation(project(" :runtime:runtime-core" ))
1717 }
1818 }
19+
1920 jvmMain {
2021 dependencies {
2122 // okhttp works on both JVM and Android
2223 implementation(project(" :runtime:protocol:http-client-engines:http-client-engine-okhttp" ))
2324 }
2425 }
26+
2527 jvmTest {
2628 dependencies {
2729 implementation(project(" :runtime:protocol:http-client-engines:http-client-engine-crt" ))
2830 }
2931 }
32+
3033 all {
3134 languageSettings.optIn(" aws.smithy.kotlin.runtime.InternalApi" )
3235 }
36+
37+ nativeMain {
38+ dependencies {
39+ implementation(project(" :runtime:protocol:http-client-engines:http-client-engine-crt" ))
40+ }
41+ }
3342 }
3443}
You can’t perform that action at this time.
0 commit comments