You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fluffychat/android/build.gradle

18 lines
307 B
Groovy

5 years ago
allprojects {
repositories {
google()
mavenCentral()
5 years ago
}
}
rootProject.buildDir = '../build'
5 years ago
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
project.evaluationDependsOn(":app")
5 years ago
}
tasks.register("clean", Delete) {
5 years ago
delete rootProject.buildDir
}