Is it possible to configure a project with kotlin ...
# coroutines
l
Is it possible to configure a project with kotlin coroutines/native with a gradle version different from
4.7
? https://github.com/Kotlin/kotlinx.coroutines/tree/master/native My problem is that with the new android plugin version
3.3.0
requires at least a gradle version of
4.10.1
and it got complicated to update my mpp
d
Gradle version 4.7 is required for kotlin/native dependencies to work, at the moment. I believe it's because the gradle metadata feature, which is in preview mode, got changed in 4.8
d
As a work around, you can manually specify the per-platform dependencies.
d
Oh, that's great. Didn't know.