aboutsummaryrefslogtreecommitdiff
path: root/build.gradle.kts
blob: 6a8c4dd5df14f1611268e8eb73d185b5ab24f3e2 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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()
    }
}