<@U3S8TTF4Z> I found that the cause for `Could not...
# kotlin-native
m
@ilya.matveev I found that the cause for
Could not find org.jetbrains.kotlin:kotlin-native-shared:0.8.
was that my project was using gradle
4.7
. It seems that K/N
0.8
requires
4.8.1
, at least for multiplatform projects
i
K/N 0.8 is compiled against Gradle 4.7 so it shouldn't be the cause. But the first 0.8 build uploaded to the plugin portal did have this problem. Did you get the plugin from the plugin portal?
m
I can tell you my steps to replicate the problem.: 1. clone https://github.com/JetBrains/KotlinMultiplatformPlayground 2. change the gradle wrapper version to
4.7
in
gradle/wrapper/gradle-wrapper.properties
3. change the K/N version in
gradle.properties
to
0.8
4. change the Kotlin version to
1.2.51
in
gradle.properties
4. apply gradle changes Then you will see
Could not find org.jetbrains.kotlin:kotlin-native-shared:0.8
. If you change gradle wrapper to
4.8.1
it works fine.
i
Thanks, I'll look at it.