mcastiblanco
07/16/2018, 12:19 AMCould 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 projectsilya.matveev
07/16/2018, 4:44 AMmcastiblanco
07/16/2018, 6:05 AM4.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.ilya.matveev
07/16/2018, 6:06 AM