diff options
author | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-02-09 11:31:06 +0100 |
---|---|---|
committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2021-02-09 11:31:06 +0100 |
commit | 9ae95694db46e95f8d0ae9f9ea0a49d2005fd250 (patch) | |
tree | e5b32cd9d235554e8761d052c3563cc371502ad8 /build.gradle |
Initial commit
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..ef7bd27 --- /dev/null +++ b/build.gradle @@ -0,0 +1,26 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. +buildscript { + ext.kotlin_version = "1.3.72" + repositories { + google() + jcenter() + } + dependencies { + classpath "com.android.tools.build:gradle:4.1.2" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + + // NOTE: Do not place your application dependencies here; they belong + // in the individual module build.gradle files + } +} + +allprojects { + repositories { + google() + jcenter() + } +} + +task clean(type: Delete) { + delete rootProject.buildDir +}
\ No newline at end of file |