diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2019-03-02 22:35:51 +0530 |
---|---|---|
committer | Mohamed Zenadi <zeapo@users.noreply.github.com> | 2019-03-02 18:05:51 +0100 |
commit | 3c06063153d0b7f71998128dc6fb4e5967e33624 (patch) | |
tree | a2630d83b430ea7a703bbeff016c3bd494bfc91e /build.gradle | |
parent | 0b6ba542a880a50e04fe04c9960999230629bc9c (diff) |
Rewrite Gradle configuration with Kotlin DSL (#488)
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/build.gradle b/build.gradle deleted file mode 100644 index 7bd17efe..00000000 --- a/build.gradle +++ /dev/null @@ -1,25 +0,0 @@ -// Top-level build file where you can add configuration options common to all sub-projects/modules. - -buildscript { - ext.kotlin_version = '1.2.71' - repositories { - google() - jcenter() - mavenCentral() - } - dependencies { - classpath 'com.android.tools.build:gradle:3.2.1' - 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() - mavenCentral() - } -} |