Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 532 Bytes

build.gradle

File metadata and controls

25 lines (21 loc) · 532 Bytes
 
1
2
3
4
5
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
Oct 28, 2018
Oct 28, 2018
6
google()
7
8
}
dependencies {
Oct 28, 2018
Oct 28, 2018
9
classpath 'com.android.tools.build:gradle:3.2.0'
10
11
12
13
14
15
16
17
18
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
Oct 28, 2018
Oct 28, 2018
19
google()
20
21
22
23
24
25
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}