1
0
mirror of https://github.com/git-touch/git-touch synced 2025-01-30 15:44:51 +01:00

30 lines
470 B
Groovy
Raw Normal View History

2018-04-18 20:38:28 +08:00
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}