ok this is something ```Uncaught Kotlin exception...
# multiplatform
p
ok this is something
Copy code
Uncaught Kotlin exception: kotlin.IllegalStateException: There is no event loop. Use runBlocking { ... } to start one.
đź§µ 1
k
You were using the non-mt version, but I suspect you didn’t turn on the new memory model. You have to enable that in
gradle.properties
with
kotlin.native.binary.memoryModel=experimental
. I saw that later you added the
-mt
version, but you don’t need that if you’re running in the new memory model