Hello, I'm trying to use ktor-client 1.0.0-beta3 w...
# ktor
k
Hello, I'm trying to use ktor-client 1.0.0-beta3 with apache and kotlin 1.3.0, but during the execution i'm getting
Exception in thread "main" java.lang.NoClassDefFoundError: kotlinx/coroutines/io/ByteChannelKt
. I searched coroutines lib and I can't find this class. Is there any special dependency that I'm missing ?
m
I'd check your tree of dependencies to see if you have a mix of different kotlin versions
k
Heh i asked too soon. I was missing kotlinx repository ...
Copy code
maven { url = uri("<https://dl.bintray.com/kotlin/kotlinx/>") }
m
ah, that'll do it