1. gradle 下载的时候有些特别的慢 , 由于你懂的原因 , 阿里做了一件好事, 你只要你的 build.gradle (project : ....)
第一个, 不要选错了
2. 直接上代码了
buildscript {
repositories {
google()
maven {
url 'http://maven.aliyun.com/nexus/content/groups/public/'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
maven {
url 'http://maven.aliyun.com/nexus/content/groups/public/'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}