summaryrefslogtreecommitdiffstats
path: root/android/build.gradle
blob: 648cc3210ab29a00aa2a70cd6a0fc2dec44d31ed (plain) (blame)
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'
    }

}

allprojects {
  repositories {
    maven { url 'https://maven.google.com' }
    jcenter()
    google()
  }
}


task clean(type: Delete) {
    delete('./build')
}

task distClean(type: Delete) {
    delete('./.gradle')
}

distClean.dependsOn clean