maybe I should reference a special library to make...
# coroutines
v
maybe I should reference a special library to make it work?
j
org.jetbrains.kotlinxkotlinx coroutines jdk80.26.1
v
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:0.26.1-eap13"
(I use 1.3-RC)
j
that's not enough
you also need kotlinx-coroutine-jdk8
v
ah! ok
j
Copy code
compile 'org.jetbrains.kotlinx:kotlinx-coroutines-core:0.26.1-eap13'
    compile 'org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:0.26.1-eap13'
v
yes! Thanks 🙂