-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
61 lines (52 loc) · 1.35 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
apply plugin: "com.gradle.build-scan"
buildscript {
repositories {
jcenter()
// Required by build scan plugin.
maven {
url("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath "com.android.tools.build:gradle:2.2.3"
classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.6.1"
classpath "com.gradle:build-scan-plugin:1.3"
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
buildScan {
licenseAgreementUrl = "https://gradle.com/terms-of-service"
licenseAgree = "yes"
}
ext {
versions = [
sdk : 24,
tools : "24.0.2",
minSdk : 15,
versionCode: 1,
versionName: "0.1"
]
libraries = [
support : "25.1.0",
dagger : "2.6",
autovalue : "1.2",
autovaluecursor: "1.0.1",
sqlbrite : "1.1.0",
rxbinding : "0.4.0",
butterknife : "8.2.1",
// test dependencies
espresso : "2.2.2",
mockito : "2.2.5",
assertj : "2.5.0",
junit : "4.12",
equalsverifier : "2.1.7",
truth : "0.30",
]
}