Hello, I just saw that this PR (<https://github.co...
# kotlin-native
t
Hello, I just saw that this PR (https://github.com/JetBrains/kotlin-native/pull/1280) got merged, which ads support for multiplatform projects to the gradle plugin. Which
konan.version
do I have to use in order to give that a try?
t
yes, that would be an option 👍 but ideally I don’t wanna rely on my local build output.
As @ilya.matveev mentioned above we can use a dev version like
konan.version=0.6-dev-822
to access not yet released features. I just couldn’t find any mapping that tells me which version I have to use that includes that merged PR.
i
The public build is not available yet. I'll notice you when it becomes ready.
💯 2
🎉 1
You may use
konan.version=0.6-dev-936
. Since the update relates to the Gradle plugin too you need to specify the same version for it:
Copy code
buildscript {
    dependencies {
        ...
        classpath "org.jetbrains.kotlin:kotlin-native-gradle-plugin:0.6-dev-936"
    }
}