swipe_to_action/example/android/build.gradle

20 lines
318 B
Groovy
Raw Normal View History

2020-10-07 10:56:15 +00:00
allprojects {
repositories {
google()
jcenter()
}
}
2020-10-07 10:56:15 +00:00
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
2020-10-07 10:56:15 +00:00
delete rootProject.buildDir
}