Hi! I have started a new mp project in IDEA (kotli...
# multiplatform
d
Hi! I have started a new mp project in IDEA (kotlin version 1.3.61) and added dependency for coroutines (
1.3.2
) and implemented an iOS dispatcher as explained by @salomonbrys in the kotlinconf workshop. The
actual
on the android side works fine, but I get an unresolved reference on the
CoroutineDispatcher
import on the ios side. When running the gradle assemble i get an error saying
The abi versions don't match. Expected '[17]', found '14'
. Any idea what causes this and how to resolve it?
a
1.3.2 supports Kotlin 1.3.50 only(https://github.com/Kotlin/kotlinx.coroutines/issues/1666). Please consider using
1.3.2-1.3.60
.
d
That did the trick! Thanks! 🙂
m
@dambakk are there somewhere publicly avaliable informations to the workshop?
d
I think anyone can take a look at the codelab. Maybe @salomonbrys can publish the link here if it is ok for him.
👍 2