aboutsummaryrefslogtreecommitdiff
path: root/ui/views/CardView/kotlinApp/build.gradle
blob: 16922ca7f37d2327a42ae8da56af1902ae462526 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
buildscript {
    ext {
        compileSdkVersion = 27
        minSdkVersion = 21
        targetSdkVersion = 27

        espressoVersion = '3.0.1'
        junitVersion = '4.12'
        kotlinVersion = '1.2.10'
        supportLibVersion = '27.0.2'
        supportTestVersion = '1.0.1'
    }
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}