Hello :wave: Anyone knows how can I fix this? :thi...
# gradle
m
Hello 👋 Anyone knows how can I fix this? 🤔
The
embedded-kotlin
and
kotlin-dsl
plugins rely on features of Kotlin
1.3.10
that might work differently than in the requested version
1.3.11
.
s
this is just a warning. not an error.
m
I also like to fix warnings 🙂
s
well in that case I can’t help. I’m also getting this warning. I believe you’ll have to wait for an update of the plugins to use a newer kotlin version
m
Alright, I guessed so. Waiting then. Thanks!
s
no problem!
e
That's because you're requesting a different version of kotlin than the one embedded in the Gradle kotlin DSL. I'm guessing
Copy code
plugins {
  *some kotlin plugin* version "1.3.11"
}
Unfortunately I don't think you can make the warning go away. Ideally newer versions of the Gradle kotlin DSL should upgrade the kotlin version they depend on.
😢 1
g
This happening because Gradle uses experimental features which don't have backward compatibility warranties
You also can you 1.3.10 instead, or just ignore warning