У меня проблема в android studio kotlin Сообщение об ошибке: groovy .lang.MissingPropertyException: Не удалось получить неизвестное свойство 'GradleDependency' для объекта типа org.gradle.api.internal.artifacts.dsl .dependencies.DefaultDependencyHandler.
buildscript {
ext.kotlin_version = '1.3.70'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:4.3.3'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
что такое решение?