1// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
3buildscript {
4    repositories {
5        maven {
6            url 'https://maven.google.com'
7        }
8        jcenter()
9    }
10    dependencies {
11        classpath 'com.android.tools.build:gradle:3.0.0'
12    }
13}
14
15allprojects {
16    repositories {
17        maven {
18            url 'https://maven.google.com'
19        }
20        jcenter()
21    }
22}
23
24task clean(type: Delete) {
25    delete rootProject.buildDir
26}
27
28
29
30
31
32
33
34
35
36
37
38