> No enum constant org.jetbrains.kotlin.konan.M...
# kotlin-native
b
No enum constant org.jetbrains.kotlin.konan.MetaVersion.RC
has anyone seen this issue before? i updated to
1.3.0-rc-146
and gradle errors.
o
Do you have a reproducer?
b
o
problem is that you added too much versioning information, following patch
Copy code
index 3b20839..187b898 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -9,10 +9,7 @@ org.gradle.parallel=true
 
 # kotlin - Make sure kotlin plugin version matches kotlin version
 # <https://github.com/JetBrains/kotlin/releases>
-kotlin_version=1.3.0-rc-146
-# <https://github.com/JetBrains/kotlin-native/releases>
-org.jetbrains.kotlin.native.version=1.3.0-rc-146
-kotlin_native_version=1.3.0-rc-146
+kotlin_version=1.3.0-rc-190
 
 # kotlin libraries
 # <https://github.com/Kotlin/kotlinx.coroutines/releases>
shall help.
b
thank you, the code compiles now