flutter shell u. emacs

This commit is contained in:
Nico
2024-11-10 16:53:41 +01:00
parent 2d73f4c713
commit 740c47e610
153 changed files with 5857 additions and 219 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
}