https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
d

dambakk

12/11/2019, 8:16 AM
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

Artyom Degtyarev [JB]

12/11/2019, 8:27 AM
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

dambakk

12/11/2019, 8:32 AM
That did the trick! Thanks! 🙂
m

Michal Harakal

12/11/2019, 12:23 PM
@dambakk are there somewhere publicly avaliable informations to the workshop?
d

dambakk

12/11/2019, 12:28 PM
I think anyone can take a look at the codelab. Maybe @salomonbrys can publish the link here if it is ok for him.
👍 2