由于Kotlin,Android中的Gradle同步失败

时间:2018-10-11 07:13:00

标签: android android-studio kotlin android-gradle project

我没有在程序中使用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本身存在问题,因为我尝试创建新项目,但同时我也遇到了相同的错误。

1 个答案:

答案 0 :(得分:0)

首先,尝试将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,然后重新启动。