base_project

This commit is contained in:
2026-09-17 07:12:45 +00:00
commit 941bbb2330
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
}