Has anybody had problems building multiplatform pr...
# multiplatform
e
Has anybody had problems building multiplatform projects with Java 11? For some reason Gradle fails to resolve project dependencies properly, it works fine with Java 8. For more context, here’s the issue that I’m investigating: https://github.com/square/wire/issues/1081
d
iirc, native doesn't support that jdk version yet.
I'm looking for some documentation to back that.
To run Kotlin/Native compiler JDK 8 or Java 9 or Java 10 (JDK) for the host platform has to be installed. Produced programs are fully self-sufficient and do not need JVM or other runtime.
https://github.com/JetBrains/kotlin-native/blob/bf7040a119c77b7a5128e5ed40d0b749eb098e77/RELEASE_NOTES.md#compatibility-and-features
e
Interesting, thanks!