我创建了一个新项目,并出现了Gradle Sync错误。
Gradle'ProjectX'项目刷新失败错误:无法使用类路径或发行版找到模块'gradle-kotlin-dsl'所需的JAR'kotlin-compiler-embeddable-1.1.3-2.jar'。
我没有使用“ Kotlin”,也没有使用Android 4.0(IceCreamSandwich)。以下是我的build.gradle
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}