-
Notifications
You must be signed in to change notification settings - Fork 67
/
config.gradle
43 lines (42 loc) · 2.28 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
ext {
android = [compileSdkVersion: 29,
buildToolsVersion: "29.0.0",
minSdkVersion : 19,
targetSdkVersion : 29,
applicationId : 'com.imooc.imooc_voice',
versionCode : 2,
versionName : '1.1',
multiDexEnabled : true,]
depsVersion = [appcompact : '29.0.0',
design : '29.0.0',
recyclerview : '29.0.0',
constraint : '1.1.3',
eventbus : '3.1.1',
greendao : '3.2.2',
rxjava : '2.2.9',
rxandroid : '2.1.1',
arouterapi : '1.5.2',
aroutercompiler: '1.5.2',
magicindicator : '1.5.0',
glide : '4.13.2',
glidecompiler : '4.13.2',
okhttp : '3.14.9',
gson : '2.8.0',
]
depsLibs = [appcompact : 'androidx.appcompat:appcompat:1.3.1',
design : 'com.google.android.material:material:1.4.0',
recyclerview : 'androidx.recyclerview:recyclerview:1.0.0',
constraint : 'androidx.constraintlayout:constraintlayout:1.1.3',
eventbus : "org.greenrobot:eventbus:${depsVersion.eventbus}",
greendao : "org.greenrobot:greendao:${depsVersion.greendao}",
rxjava : "io.reactivex.rxjava2:rxjava:${depsVersion.rxjava}",
rxandroid : "io.reactivex.rxjava2:rxandroid:${depsVersion.rxandroid}",
arouterapi : "com.alibaba:arouter-api:${depsVersion.arouterapi}",
aroutercompiler: "com.alibaba:arouter-compiler:${depsVersion.aroutercompiler}",
magicindicator : "com.github.hackware1993:MagicIndicator:${depsVersion.magicindicator}",
glide : "com.github.bumptech.glide:glide:${depsVersion.glide}",
glidecompiler : "com.github.bumptech.glide:compiler:${depsVersion.glidecompiler}",
okhttp : "com.squareup.okhttp3:okhttp:${depsVersion.okhttp}",
gson : "com.google.code.gson:gson:${depsVersion.gson}",
]
}