Hello, I am getting ```Class 'tz.co.asoft.IPrinci...
# announcements
a
Hello, I am getting
Copy code
Class 'tz.co.asoft.IPrinciple' is compiled by an unstable version of the Kotlin compiler and cannot be loaded by this compiler
using kotlin 1.4.30 JVM/IR
Class '<http://tz.co|tz.co>.asoft.IPrinciple'
was compiled by kotlin 1.4.21 JVM/IR. Is this expected? Do all my dependencies need to be recompiled by 1.4.30?
After further reading, I found out I can just slap in this block of code
Copy code
kotlinOptions {
    freeCompilerArgs = listOf("-Xallow-unstable-dependencies")
}
Question is, is it the best route? This code will be in production. Any guarantees?
p
I would assume unstable implies no guarantee :)
a
hehe, I was just finding someone to provide to me a reason to skip recompilation of a chain of dependencies that we have😀