我刚刚使用NetBeans 8.2创建了一个示例HTML5 / Cordova项目,在构建过程中,我遇到了这个错误:
* What went wrong:
A problem occurred configuring root project 'android'.
> Could not resolve all dependencies for configuration ':classpath'.
> Could not find gradle.jar (com.android.tools.build:gradle:2.2.1).
Searched in the following locations:
https://jcenter.bintray.com/com/android/tools/build/gradle/2.2.1/gradle-2.2.1.jar
以前有没有遇到过这个问题? 我可以成功下载文件,因此没有连接问题。
答案 0 :(得分:0)
对于gradle项目,您需要在名为build buildscripts 的闭包内配置本地或远程依赖项存储库。看来您没有添加正确的远程存储库和相关性,通常是 jcenter()。例如,在您的root build.gradle中,必须包含以下脚本。
buildscript {
repositories {
google()
maven {
url "https://plugins.gradle.org/m2/"
}
jcenter() // the remote repositories.
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1' // the gradle dependencies.
}
}