19 lines
322 B
Groovy
Raw Normal View History

2022-01-16 11:19:01 -05:00
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
2023-09-20 11:31:01 -04:00
tasks.register("clean", Delete) {
2022-01-16 11:19:01 -05:00
delete rootProject.buildDir
}