34 lines
943 B
Groovy
34 lines
943 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
repositories {
|
|
|
|
flatDir {
|
|
dirs 'libs' // aar目录
|
|
}
|
|
maven {url "https://maven.aliyun.com/repository/jcenter"}
|
|
maven {url "https://maven.aliyun.com/repository/google"}
|
|
maven {url "https://maven.aliyun.com/nexus/content/groups/public"}
|
|
google()
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:4.0.1"
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
flatDir {
|
|
dirs 'libs' // aar目录
|
|
}
|
|
maven {url "https://maven.aliyun.com/repository/jcenter"}
|
|
maven {url "https://maven.aliyun.com/repository/google"}
|
|
maven {url "https://maven.aliyun.com/nexus/content/groups/public"}
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |