Gradle项目刷新失败错误:找不到JAR'kotlin-compiler-embeddable-1.1.3-2.jar'

时间:2019-03-23 13:00:55

标签: java android gradle kotlin android-gradle

我创建了一个新项目,并出现了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
}

0 个答案:

没有答案