我是Android-Studio的新手,我试图让一个 "旧 "的应用程序重新运行。当我将Project与Gradle文件同步时,它就给我显示了一个错误信息。
原因是:org.gradle.internal.resolve.ModuleVersionNotFoundException。找不到com.android.tools.build:gradle:4.0.0。
我试着更新了Gradle插件,但我不确定我做的每件事是否正确。
build.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()
gradle-wrapper.properties。
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl = https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
我还在资源库中添加了google()和mavenCentral(),但这并没有帮助。