anyway/frontend/android/build.gradle
Remy Moll 713e4a6671
Some checks failed
Test code / Test code (push) Failing after 41s
split into frontend and backend
2024-05-16 17:08:18 +02:00

19 lines
322 B
Groovy

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