This message was deleted.
# community-support
s
This message was deleted.
p
The
kotlin-dsl
plugin version for Gradle 7.6 is 2.4.1
v
I had not defined the version, so I supposed that would not be the issue. I ve change it to this
Copy code
plugins {
    id("org.gradle.kotlin.kotlin-dsl") version "2.4.1"

}
and the problem still persists. The strange thing here is that I still get this log:
Copy code
This version of Gradle expects version '2.4.1' of the `kotlin-dsl` plugin but version '2.1.7' has been applied to project ':buildSrc'. Let Gradle control the version of `kotlin-dsl` by removing any explicit `kotlin-dsl` version constraints from your build logic.
Found the problem. The version was defined somewhere else statically... Thank you for your help 🙂
👍 1