Is there a new Kotlin Gradle plugins dependency co...
# gradle
c
Is there a new Kotlin Gradle plugins dependency coming out for Kotlin 1.4.0? 
implementation("org.gradle.kotlin:plugins:1.3.6")
is causing incompatibilities with the 1.4.0 Kotlin Gradle plugin because it depends upon 1.3.72. I don't see a newer version out.
m
Do you mean
implementation(kotlin("gradle-plugin"))
?
c
m
There is no update for kotlin-dsl yet. See https://github.com/gradle/gradle/issues/12660
👍 1