diff options
author | Tim <contact@bytim.eu> | 2025-02-08 11:28:57 +0100 |
---|---|---|
committer | Tim <contact@bytim.eu> | 2025-02-08 11:28:57 +0100 |
commit | d69bc395e6cc9ed5e1da6a31835874142fe6800e (patch) | |
tree | 324cf18c710721c286890d78310ebe0075499ea4 /android/build.gradle | |
download | distractionless-d69bc395e6cc9ed5e1da6a31835874142fe6800e.tar.xz distractionless-d69bc395e6cc9ed5e1da6a31835874142fe6800e.zip |
Initial commit
Diffstat (limited to 'android/build.gradle')
-rw-r--r-- | android/build.gradle | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/android/build.gradle b/android/build.gradle new file mode 100644 index 0000000..d2ffbff --- /dev/null +++ b/android/build.gradle @@ -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 +} |