-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
44 lines (39 loc) · 875 Bytes
/
build.gradle
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
33
34
35
36
37
38
39
40
41
42
43
44
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath "com.android.tools.build:gradle:2.3.3"
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
// Versions-of-everything, same for all modules
ext {
// App version information
majorAppVersion = 1
minorAppVersion = 0
patchAppVersion = 0
buildAppVersion = 0
// Build tools, SDKs, etc.
buildTools = "26.0.1"
minSdk = 16
compileSdk = 26
targetSdk = 26
// Libraries versions
supportLibraryVersion = "26.1.0"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}