web-dev-qa-db-ja.com

AndroidでKodleが原因でGradleの同期に失敗しました

私はプログラムで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自体に何か問題があると思います。新しいプロジェクトを作成しようとしたのですが、それでも同じエラーが発生しています。

3
Minion

まず、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を更新してから再起動します。

1
ʍѳђઽ૯ท