Hello! I’m encountering issues when trying to run ...
# ksp
g
Hello! I’m encountering issues when trying to run unit tests for my KSP Processor. However, it works as expected in a sample app, where everything runs and generates correctly. This started happening after updating Kotlin and KSP to version 1.2.0-RC. Any ideas on what might be causing this?
Copy code
.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/2.1.0-RC/ed98ece317a878e4f67a7adf93196fd8fe8a3a91/kotlin-stdlib-2.1.0-RC.jar!/META-INF/kotlin-stdlib-jdk7.kotlin_moduleModule was compiled with an incompatible version of Kotlin. The binary version of its metadata is 2.1.0, expected version is 1.9.0.

java.lang.AssertionError
could it be a dependency problem related to its Kotlin dep. version?
Copy code
kotlin = "2.1.0-RC"
ksp = "2.1.0-RC-1.0.26"
kotlinCompose = "1.7.0"
kotlinxSerialization = "1.7.3"
kotlinxSerializationPlugin = "2.0.20"
dokka = "2.0.0-Beta"
gradlePublish = "1.3.0"
junitApi = "5.11.3"
junitEngine = "5.11.3"
compileTesting = "1.6.0"
it works with:
Copy code
kotlin = "2.0.21"
ksp = "2.0.21-1.0.26"