Files
Motula-Translate-App/motula_translate_app/android/build.gradle
paoloGuagnano 06336bd3d9 First commit
2024-03-04 13:04:01 +01: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
}