notes fix

This commit is contained in:
2024-06-24 11:09:42 +02:00
parent 3a408e8464
commit a7e961e201
291 changed files with 5398 additions and 426 deletions

View File

@@ -0,0 +1,18 @@
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
}