現在、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
}