With 1.3.40 in one of my projects, I keep getting ...
# kotlin-native
s
With 1.3.40 in one of my projects, I keep getting the error
org.jetbrains.kotlin.konan.target.HostManager.<init>(Lorg/jetbrains/kotlin/konan/target/Distribution;ZILkotlin/jvm/internal/DefaultConstructorMarker;)V
when attempting to assemble the project, or in fact run any Gradle task.
l
Could you report it on kotl.in/issue and report it back here?
s
Sure, but it'll have to wait a couple hours. The repository I'm having the issue with is located at https://gitlab.com/serebit/logkat if anyone wants to take a look. Only change is the version of
kotlin-multiplatform
to 1.3.40
i
@serebit It looks like you just didn't update version of
gradle-plugin-api
in
buildSrc
. Updating it to 1.3.40 fixes the error. Also note that libraries you use need to be updated too because old libraries are not compatible with the new Kotlin/Native compiler.
s
To the former, wow I feel stupid. To the latter, I was expecting an error with the ABI version difference, which I do get now that I've changed the version of
gradle-plugin-api
. Thanks, Ilya!