每当我开始一个新项目时,我都会收到此错误。它没有配置。
Gradle sync失败:配置项目':app'时出现问题。 有关更多详细信息,请参阅IDE日志(帮助|显示日志)
的build.gradle:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}