我第一次安装了Android Studio(2021.3.1.17),并开始导入我的Eclipse/ADT项目。
项目本身的导入似乎进行得很顺利,但我收到了以下错误:
Could not find com.android.tools.build:gradle:7.3.1.
Searched in the following locations:
- https://jcenter.bintray.com/com/android/tools/build/gradle/7.3.1/gradle-7.3.1.pom
我在项目的build.gradle
中添加了以下内容:
maven {
url "https://maven.google.com"
}
因此它现在具有:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
}
}
allprojects {
repositories {
maven {
url "https://maven.google.com"
}
jcenter()
}
}
但我仍然得到这个错误。
我错过了什么?我该怎么弥补?
1条答案
按热度按时间uurv41yg1#
通过将maven子句从
allprojects
移动到buildscript
解决了问题,这样整个build.gradle现在是:另请注意,自Gradle 4.10(2018年8月27日)起,
compile
配置已被弃用,并最终在Gradle 7.0(2021年4月9日)中被移除,取而代之的是implementation
。