Hi! :wave: I'm currently trying to implement Ktor ...
# multiplatform
m
Hi! 👋 I'm currently trying to implement Ktor at my company, but I get a really weird error and I really don't know how to debug it. I was hoping someone here might have experienced the same or had any ideas 🙏 Full description on YouTrack
g
#ktor
🙌 1
m
m
I can confirm, that ktor is working well in our iOS project. We are using the latest versions of libs https://github.com/dukecon/dukecon_mobile/blob/feature/kotlin-1.4-migration/shared/backend/sessionize/build.gradle.kts
m
Yes, I could also get it to work fine on a sample project 🙂
I believe some interplay in some concurrency is making it crash
m
Yeah this one ist quite simpe, but got one also with bunch of AWS stuff. Concurrency was also my guess. I’ve ende up having code like this
Copy code
DispatchQueue.main.async {
    doStuffWithClassesFromShared()
}
m
Yeah I tried that as well but I get the same error