aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
diff options
context:
space:
mode:
authorHarsh Shandilya <msfjarvis@gmail.com>2019-03-02 22:35:51 +0530
committerMohamed Zenadi <zeapo@users.noreply.github.com>2019-03-02 18:05:51 +0100
commit3c06063153d0b7f71998128dc6fb4e5967e33624 (patch)
treea2630d83b430ea7a703bbeff016c3bd494bfc91e /build.gradle.kts
parent0b6ba542a880a50e04fe04c9960999230629bc9c (diff)
Rewrite Gradle configuration with Kotlin DSL (#488)
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to 'build.gradle.kts')
-rw-r--r--build.gradle.kts21
1 files changed, 21 insertions, 0 deletions
diff --git a/build.gradle.kts b/build.gradle.kts
new file mode 100644
index 00000000..6a8c4dd5
--- /dev/null
+++ b/build.gradle.kts
@@ -0,0 +1,21 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+
+buildscript {
+ repositories {
+ google()
+ jcenter()
+ mavenCentral()
+ }
+ dependencies {
+ classpath("com.android.tools.build:gradle:3.2.1")
+ classpath(kotlin("gradle-plugin", "1.2.71"))
+ }
+}
+
+allprojects {
+ repositories {
+ google()
+ jcenter()
+ mavenCentral()
+ }
+}