-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.gradle
46 lines (40 loc) · 1.97 KB
/
config.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
ext {
android = [
compileSdkVersion: 30,
minSdkVersion : 17,
buildToolsVersion :"30.0.3",
targetSdkVersion : 30,
]
dependencies = [
//androidx
coreKtx : "1.6.0",
annotation : "1.2.0",
lifecycle : "2.3.1",
lifecycleExt : "2.2.0",
fragmentKtx : "1.3.6",
//UI
appcompat : "1.3.1",
constraintlayout : "2.1.1",
recyclerview : "1.2.1",
glide : "4.12.0",
viewpager2 : "1.0.0",
//network
okhttp : "5.0.0-alpha.2",
retrofit : "2.9.0",
converterGson : "2.9.0",
adapterRxjava2 : "2.8.1",
retrofitUrlManager : "1.4.0",
//json解析
gson : "2.8.6",
//rxjava
"rxjava2" : "io.reactivex.rxjava2:rxjava:2.2.3",
"rxjava2-android" : "io.reactivex.rxjava2:rxandroid:2.1.0",
//widget
material : "1.4.0",
materialDialogs : "3.3.0",
//test
junit : "4.13.2",
testJunit : "1.1.3",
testEspressoCore : "3.4.0",
]
}