Gradle 由于 kotlin,android 同步失败

Gradle sync failed in android due to kotlin

我没有在我的程序中使用 kotlin,除非我将目标版本从 26 更新到 28,否则它工作正常。我对 kotlin 不太了解。每当我尝试同步 gradle 文件时,它都会出错:

org.jetbrains.kotlin.gradle.KotlinGradleModel.getImplements()Ljava/util/List;

为什么会这样?

我的 gradle 文件是:

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.pr20020897.dms"
        minSdkVersion 21
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    testImplementation 'junit:junit:4.12'
    implementation 'com.android.support:design:28.0.0-alpha1'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}

项目级别gradle:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.4'


        // 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
}

我认为,android studio 本身有问题,因为我试图创建新项目,但我也遇到了同样的错误。

首先,尝试将您的 gradle 更新为:

classpath 'com.android.tools.build:gradle:3.2.0'

并且在你的依赖中,使用稳定版本:

implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'

既然你说你没有使用 kotlin,更新 kotlin 插件会有帮助

前往:File -> Settings -> Plugins 更新 kotlin 然后重启。