不幸的是,当gradle正在同步时,我收到了此错误,
找不到gradle.jar(com.android.tools.build:gradle:3.2.1)。 在以下位置搜索: https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.2.1/gradle-3.2.1.jar
这是我的构建。Gradle页面详细信息,
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
答案 0 :(得分:0)
尝试添加gradlePluginPortal()
buildscript {
repositories {
google()
jcenter()
gradlePluginPortal()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
然后选择工具> Android>使用Gradle文件同步项目