作者:小哥脾气 | 来源:互联网 | 2023-02-02 10:00
我只是更新我的Android工作室预览3.0金丝雀3.在此之后我试图运行该项目,但显示以下错误.
Error:Could not find com.android.tools.build:gradle:3.0.0.
Searched in the following locations:
file:/opt/android-studio-preview/gradle/m2repository/com/android/tools/build/gradle/3.0.0/gradle-3.0.0.pom
file:/opt/android-studio-preview/gradle/m2repository/com/android/tools/build/gradle/3.0.0/gradle-3.0.0.jar
https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.0/gradle-3.0.0.pom
https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.0/gradle-3.0.0.jar
Required by:
project :
MatPag..
6
您需要做的主要事情是:
将项目级别build.gradle
文件更改为:
buildscript {
repositories {
...
// You need to add the following repository to download the
// new plugin.
maven {
url 'https://maven.google.com'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-alpha3'
}
}
distributionUrl
将gradle-wrapper.properties 更改为当前最新的Gradle版本.
distributiOnUrl=https://services.gradle.org/distributions/gradle-4.0-rc-1-all.zip
完成此步骤后,您的项目无法编译,您需要按照此处的说明将有关如何将应用程序转换build.gradle
为新插件的说明
1> MatPag..:
您需要做的主要事情是:
将项目级别build.gradle
文件更改为:
buildscript {
repositories {
...
// You need to add the following repository to download the
// new plugin.
maven {
url 'https://maven.google.com'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-alpha3'
}
}
distributionUrl
将gradle-wrapper.properties 更改为当前最新的Gradle版本.
distributiOnUrl=https://services.gradle.org/distributions/gradle-4.0-rc-1-all.zip
完成此步骤后,您的项目无法编译,您需要按照此处的说明将有关如何将应用程序转换build.gradle
为新插件的说明