web-dev-qa-db-ja.com

com.Android.tools.build:gradle:5.6が見つかりませんでした

私のgradleに問題があります、私はstackoverflowや他のドキュメントで見つけた多くの解決策を試しましたが、それでも機能しません、助けてください

enter image description here

enter image description here

5
Sacha

現在、Gradleプラグインバージョンのバージョン5.6はありません。以下のリンクには、GoogleのMarvelリポジトリにあるGradleプラグインバージョンの最新リリースがすべてリストされています。

https://mvnrepository.com/artifact/com.Android.tools.build/gradle?repo=google

私が言っているのは、GradleラッパープロパティのdistributionUrlバージョンです。

gradle-wrapper.propertiesファイルに移動し、必要に応じて入力します。

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6-all.Zip

次に、プロジェクトのbuild.gradleファイルは次のようになります。

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript
        {
    repositories
            {
        google()
        jcenter()
    }

    dependencies
            {
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        classpath 'com.google.gms:google-services:4.2.0'
        classpath 'com.Android.tools.build:gradle:3.4.2'
    }
}


allprojects {

    repositories {
        google()
        maven { url 'https://maven.google.com' }
        jcenter()
    }

}

task clean(type: Delete) {
    delete rootProject.buildDir
}
0
George