You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.1 KiB
35 lines
1.1 KiB
buildscript {
|
|
repositories {
|
|
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
|
|
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
|
|
maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
|
|
maven { url 'http://maven.aliyun.com/nexus/content/repositories/gradle-plugin' }
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.5.1'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
|
|
maven { url 'http://maven.aliyun.com/nexus/content/repositories/jcenter' }
|
|
maven { url 'http://maven.aliyun.com/nexus/content/repositories/google' }
|
|
maven { url 'http://maven.aliyun.com/nexus/content/repositories/gradle-plugin' }
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.buildDir = '../build'
|
|
subprojects {
|
|
project.buildDir = "${rootProject.buildDir}/${project.name}"
|
|
project.evaluationDependsOn(':app')
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|
|
|