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 2e14f3a commit b55f136Copy full SHA for b55f136
gradle.properties
@@ -70,6 +70,6 @@ maven.snapshot.repo.enabled=false
70
# Other projects
71
module.compose.enabled=true
72
module.boot.enabled=false
73
-kotlin.target.native.enabled=false
+kotlin.target.native.enabled=true
74
kotlin.target.win.enabled=false
75
debug=false
shared/src/nativeMain/kotlin/dev/suresh/http/HttpClient.native.kt
@@ -15,8 +15,10 @@ actual fun httpClient(
15
config(this)
16
engine {
17
// https://youtrack.jetbrains.com/issue/KTOR-8339
18
+ val cacertPath = "/etc/ssl/certs"
19
if (Platform.osFamily == OsFamily.LINUX) {
- caPath = "/etc/ssl/certs"
20
+ caPath = cacertPath
21
+ kLogger.warn { "Setting CA path to $caPath" }
22
}
23
sslVerify = true
24
0 commit comments