summaryrefslogtreecommitdiff
path: root/android/build.gradle.kts
diff options
context:
space:
mode:
authorBoredGuy <osome3717@gmail.com>2026-05-09 19:59:04 -0700
committerBoredGuy <osome3717@gmail.com>2026-05-09 19:59:04 -0700
commit67427aec40ba094f1e7f3ee77eab09df73d752f1 (patch)
treeb1cbaff8f809f5b003977279b93a6bae262e5b0b /android/build.gradle.kts
Initial CommitHEADmaster
Diffstat (limited to 'android/build.gradle.kts')
-rw-r--r--android/build.gradle.kts24
1 files changed, 24 insertions, 0 deletions
diff --git a/android/build.gradle.kts b/android/build.gradle.kts
new file mode 100644
index 0000000..dbee657
--- /dev/null
+++ b/android/build.gradle.kts
@@ -0,0 +1,24 @@
+allprojects {
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+
+val newBuildDir: Directory =
+ rootProject.layout.buildDirectory
+ .dir("../../build")
+ .get()
+rootProject.layout.buildDirectory.value(newBuildDir)
+
+subprojects {
+ val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
+ project.layout.buildDirectory.value(newSubprojectBuildDir)
+}
+subprojects {
+ project.evaluationDependsOn(":app")
+}
+
+tasks.register<Delete>("clean") {
+ delete(rootProject.layout.buildDirectory)
+}