Ensure project is properly named across all files.

This commit is contained in:
2025-03-21 10:24:46 -07:00
parent 5ec246228e
commit bc3b3a4109
13 changed files with 27 additions and 30 deletions
-18
View File
@@ -1,18 +0,0 @@
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
}