当前位置: 首页 > 知识库问答 >
问题:

错误原因:找不到com.android.tools.build:gradle:4.0.0

成浩漫
2023-03-14

我对Android-Studio是新手,我正试图让一个“旧”应用程序重新运行。当我将Project与Gradle文件同步时,它会向我显示一条错误消息:

    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:4.0.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl = https\://services.gradle.org/distributions/gradle-6.1.1-all.zip

我还将google()和mavenCentral()添加到存储库中,但这并没有帮助。

共有1个答案

欧渝
2023-03-14

请至少尝试版本6.2或更好的版本6.5(最新版本):

distributionUrl = https\://services.gradle.org/distributions/gradle-6.5-all.zip

还要尝试将这些repo添加到buildscript和allprojects存储库:

 mavenCentral()
 google()
 jcenter()
 类似资料: