Android Studio is giving a warning saying: "Kotlin version that is used for building with Gradle (1.3.10) differs from the one bundled into the IDE plugin (1.3.41)".
How can i change the Kotlin version used by Gradle?
I have installed the latest Android Studio version(3.4.2) with the latest Kotlin plugin(1.3.41-release-Studio3.4-1)
I have also tried to change the kotlin version in the build.gradle file, but its saved in a variable "kotlin_version$"
dependencies {
// ....
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}