Use the non-KTS files after all, the KTS versions do not launch successfully.

This commit is contained in:
2025-03-21 10:34:56 -07:00
parent f441caebf7
commit adea1eeb02
3 changed files with 0 additions and 0 deletions
+18
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
}