-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathdependencyVersion.gradle
62 lines (47 loc) · 1.55 KB
/
dependencyVersion.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
62
ext {
// version for dependencies
ver = [
kotlin : "1.7.20",
// build tools
buildTools : [
android_gradle : "7.3.1",
bintray_gradle: "1.8.5",
maven_gradle: "2.1"
],
// API and runtime implementations
androidx : [
annotation : "1.1.0",
appcompat : "1.1.0",
browser : "1.2.0",
constraintlayout: "1.1.3",
core : "1.2.0",
exifinterface : "1.2.0",
legacy : "1.0.0",
lifecycle : "2.4.0",
multidex : "2.0.1",
test : "1.2.0",
test_espresso : "3.2.0",
test_uiautomator: "2.2.0"
],
apache : [
commons_lang3: "3.10"
],
google : [
material: "1.0.0"
],
butterknife : "10.2.1",
picasso : "2.8",
reactivex : [
rxjava : "2.2.19",
rxandroid: "2.1.1"
],
spongycastle: "1.58.0.0",
jjwt : "0.11.1",
// for Java Doc
doclava : "1.0.6",
// for Test
jUnit : "4.13",
robolectric : "4.3.1",
mockito : "3.3.3"
]
}