https://kotlinlang.org logo
#intellij-plugins
Title
# intellij-plugins
c

cfleming

09/19/2018, 12:36 PM
I’m trying to add support for the 2018.3 beta to my plugin. When I switch to compiling against 183.2407.10, I get tons of errors along the lines of:
Class 'kotlin.jvm.Throws' is compiled by a pre-release version of Kotlin and cannot be loaded by this version of the compiler
d

Dmitry Kandalov

09/19/2018, 5:14 PM
You can add
-Xskip-metadata-version-check
compiler argument in
build.gradle
(and in IDE) to suppress the error.
2 Views