-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.gradle
57 lines (42 loc) · 2.39 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
47
48
49
50
51
52
53
54
55
56
ext {
android = [
// 用于编译的SDK版本
COMPILE_SDK_VERSION: 29,
// 最低支持Android版本
MIN_SDK_VERSION : 25,
// 目标版本
TARGET_SDK_VERSION : 29,
]
app=[
VERSION_CODE : 100,
VERSION_NAME : '1.0.0',
]
dependencies = [
"appcompat" : 'androidx.appcompat:appcompat:1.1.0',
"material" : 'com.google.android.material:material:1.0.0',
"palette" : 'androidx.palette:palette:1.0.0',
"viewpager" : 'androidx.viewpager2:viewpager2:1.0.0',
"constraint-layout" : 'androidx.constraintlayout:constraintlayout:1.1.3',
"recyclerview" : 'androidx.recyclerview:recyclerview:1.1.0',
"annotations" : 'androidx.annotation:annotation:1.1.0',
"multidex" : 'androidx.multidex:multidex:2.0.1',
"butterknife" : 'com.jakewharton:butterknife:10.2.1',
"butterknife-compiler" : 'com.jakewharton:butterknife-compiler:10.2.1',
"arouter-api" : 'com.alibaba:arouter-api:1.5.0',
"arouter-compiler" : 'com.alibaba:arouter-compiler:1.2.2',
"eventbus" : 'org.greenrobot:eventbus:3.2.0',
"greendao" : 'org.greenrobot:greendao:3.2.2',
"zxing" : 'com.google.zxing:core:3.3.3',
"gson" : 'com.google.code.gson:gson:2.8.6',
"fastjson" : 'com.alibaba:fastjson:1.2.66',
"okhttp" : 'com.squareup.okhttp3:okhttp:4.4.0',
"okhttp-urlconnection" : 'com.squareup.okhttp3:okhttp-urlconnection:4.4.0',
"glide" : 'com.github.bumptech.glide:glide:4.11.0',
"luban" : 'top.zibin:Luban:1.1.8',
"lottie" : 'com.airbnb.android:lottie:3.4.0',
"mapbox" : 'com.mapbox.mapboxsdk:mapbox-android-sdk:8.6.2',
"video-player" : 'cn.jzvd:jiaozivideoplayer:7.2.1',
"doraemonkit" : 'com.didichuxing.doraemonkit:doraemonkit:2.2.2',
"doraemonkit-no-op" : 'com.didichuxing.doraemonkit:doraemonkit-no-op:2.2.2'
]
}