module, it complained that it was still experimental. I assumed that is because of this matrix (https://docs.gradle.org/current/userguide/compatibility.html#kotlin). Am I right? Is having a different Kotlin version on the same project an issue (it's not on the same project, only on the build logic, but still...)?
t
tapchicoma
01/31/2025, 5:37 PM
Overall correct.
There are two Kotlin versions used in your project:
• one is coming from Gradle Kotlin runtime and is used to compile your build logic
• second one is what version of Kotlin Gradle Plugin your project is using to compile project sources
These two versions quite often are different