Hi , My Kotlin-Native Project use androidNativeArm...
# ktor
v
Hi , My Kotlin-Native Project use androidNativeArm64/32/x64/x86 which implementation can i use?? (i got error with below)
Copy code
implementation("io.ktor:ktor-client-android:$ktor_version")
implementation("io.ktor:ktor-client-core:$ktor_version")
implementation("io.ktor:ktor-client-curl:$ktor_version")
....
I need to use HttpClient() Thanks
c
Looks like you need curl but you'll need to package and ship .so files yourself . Other engines don't work on native. The other alternative is to call jvm from native and use ktor-client-android in kotlin/jvm part. Both don't look like easy solution. ktor cio engine is not ready for native yet
d
Do you have the correct bintray repositories configured?