答案 0 :(得分:0)
您可以打开项目的build.gradle,它看起来像是:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
classpath'com.android.tools.build:grad:1.5.0'是关键,你可以改变你的android studio版本的版本依赖(我的是v1.5.1)。