G-EIP-700-TLS-7-1-eip-steph.../dialer/android/build.gradle
Bartosz 13376118c3
All checks were successful
/ mirror (push) Successful in 4s
add of sim changes
2024-11-28 20:57:58 +00:00

20 lines
323 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
}