base_project

This commit is contained in:
2026-09-16 18:39:51 +00:00
commit d4c9a204a8
1350 changed files with 89430 additions and 0 deletions
@@ -0,0 +1,21 @@
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
}