diff options
Diffstat (limited to 'build.gradle.kts')
-rw-r--r-- | build.gradle.kts | 21 |
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() + } +} |