【问题标题】:Gradle sync failed in android due to kotlin由于 kotlin,Android 中的 Gradle 同步失败
【发布时间】:2018-10-11 07:13:00
【问题描述】:

我没有在我的程序中使用 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'
}

项目级分级:

// 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 本身有问题,因为我试图创建新项目,但我也遇到了同样的错误。

【问题讨论】:

  • 检查项目级别build.gradle
  • 我建议不要使用 alpha 版本...28.0.0 于 9 月发布
  • @cricket_007 kotlin 与 alpha 版本的关系如何?
  • 我不知道,但 Android 28 与您的错误无关。这是 Gradle 版本的问题,而不是 Android。
  • 是的,但它不起作用。

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


【解决方案1】:

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

【讨论】:

  • 工作就像一个魅力!
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2016-05-18
  • 2016-02-05
  • 2023-04-09
  • 1970-01-01
相关资源
最近更新 更多