summaryrefslogtreecommitdiffstats
path: root/build.gradle
diff options
context:
space:
mode:
authorThomas <tschneider.ac@gmail.com>2022-04-27 15:20:42 +0200
committerThomas <tschneider.ac@gmail.com>2022-04-27 15:20:42 +0200
commit0f855c5ac2dccbc1c1df99b9d5ee17d6293d82df (patch)
tree157224e6752e2facae194034e2e709d23a04fc7d /build.gradle
first commit
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle24
1 files changed, 24 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 000000000..7d4853146
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,24 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+buildscript {
+ repositories {
+ mavenCentral()
+ google()
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:7.0.4'
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+allprojects {
+ repositories {
+ mavenCentral()
+ google()
+ maven { url 'https://jitpack.io' }
+ }
+}
+task clean(type: Delete) {
+ delete rootProject.buildDir
+} \ No newline at end of file