base_project

This commit is contained in:
2026-09-22 11:51:34 +00:00
commit db1ff846a9
1528 changed files with 79821 additions and 0 deletions
@@ -0,0 +1,27 @@
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {}
}
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
}