-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdependencies.gradle
More file actions
45 lines (36 loc) · 1.35 KB
/
dependencies.gradle
File metadata and controls
45 lines (36 loc) · 1.35 KB
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
ext {
supportVersion = '28.0.0'
supportLibrary = [
appCompat: "com.android.support:appcompat-v7:$supportVersion",
design : "com.android.support:design:$supportVersion"
]
nineDroidVersion = '2.4.0'
butterKnifeVersion = '8.8.0'
ui = [
nineoldanimations: "com.nineoldandroids:library:${nineDroidVersion}"
]
rxVersion = '2.1.14'
rxAndroidVersion = '2.0.2'
rxBinding = '2.1.1'
rx = [
rxBinding: "com.jakewharton.rxbinding2:rxbinding:${rxBinding}",
rxjava : "io.reactivex.rxjava2:rxjava:${rxVersion}",
rxandroid: "io.reactivex.rxjava2:rxandroid:${rxAndroidVersion}"
]
junitVersion = '4.12'
mockitoVersion = '1.10.19'
hamcrestVersion = '1.3'
powerMockVersion = '1.6.2'
test = [
junit : "junit:junit:${junitVersion}",
mockito : "org.mockito:mockito-all:${mockitoVersion}",
hamcrest : "org.hamcrest:hamcrest-all:${hamcrestVersion}",
powerMockJUnit : "org.powermock:powermock-module-junit4:${powerMockVersion}",
powerMockMockito: "org.powermock:powermock-api-mockito:${powerMockVersion}"
]
androidTestRunnerVersion = '0.5'
espressoVersion = '2.2.2'
mockServerVersion = '3.2.0'
daggerVersion = '2.0.2'
glassFishVersion = '10.0-b28'
}