-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathversions.gradle
43 lines (34 loc) · 861 Bytes
/
versions.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
ext {
// App
compileSdkVersion = 28
minSdkVersion = 21
targetSdkVersion = 28
appVersionCode = 1
appVersionName = "1.0"
// libs
daggerVersion = "2.16"
retrofit2Version = "2.4.0"
rxJavaVersion = "2.2.0"
rxAndroidVersion = "2.1.0"
// Android UI
appcompatVersion = "1.0.2"
materialVersion = "1.0.0"
constraintlayoutVersion = "1.1.3"
recyclerviewVersion = "1.0.0"
// Custom UI
circularImageViewVersion = "3.2.0"
// Image loading
glideVersion = "4.8.0"
// testing
junitVersion = "4.12"
testRunnerVersion = "1.1.1"
testRulesVersion = "1.1.1"
espressoVersion = "3.1.1"
mockitoVersion = "2.22.0"
// Other
javaxInjectVersion = "1"
// Architecture components
roomVersion = "2.0.0"
archCoreVersion = "2.0.0"
lifecycleVersion = "2.0.0"
}