Hi, I’m struggling for using ktor on iOS.
I got coroutine problems when I call “HttpClient().get”.
I read
https://github.com/ktorio/ktor/issues/678
and I tried “callback” way.
Then I got following error.
Uncaught Kotlin exception: kotlin.IllegalStateException: There is no event loop. Use runBlocking { ... } to start one.
So, I modified code and “CoroutineDispatcher” is implemented.
But, I got another error.
io.ktor.client.call.ReceivePipelineException: Fail to run receive pipeline
What should I do? Did I miss something?