1
0
mirror of https://github.com/git-touch/git-touch synced 2025-01-29 23:24:49 +01:00

30 lines
470 B
Groovy
Raw Normal View History

2018-04-18 20:38:28 +08:00
buildscript {
repositories {
google()
jcenter()
}
dependencies {
2018-12-27 22:31:02 +08:00
classpath 'com.android.tools.build:gradle:3.2.1'
2018-04-18 20:38:28 +08:00
}
}
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
}