-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
93 lines (71 loc) · 4.43 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
ext {
//android开发版本配置
android = [
compileSdkVersion: 29,
buildToolsVersion: "29.0.3",
minSdkVersion : 21,
targetSdkVersion : 29,
]
//version配置
versions = [
support: "28.0.0",
]
//support androidx配置
support = [
"multidex" : "androidx.multidex:multidex:2.0.1",
"support-v4" : "androidx.legacy:legacy-support-v4:1.0.0",
"appcompat" : "androidx.appcompat:appcompat:1.0.2",
"palette" : "androidx.palette:palette:1.0.0",
"annotation" : "androidx.annotation:annotation:1.1.0",
"recyclerview" : "androidx.recyclerview:recyclerview:1.1.0",
"cardview" : "androidx.cardview:cardview:1.0.0",
"constraintlayout" : "androidx.constraintlayout:constraintlayout:1.1.3",
////Google AAC
"lifecycle-compiler" : "androidx.lifecycle:lifecycle-compiler:2.2.0",
"lifecycle-extensions": "androidx.lifecycle:lifecycle-extensions:2.2.0",
"material" : "com.google.android.material:material:1.0.0",
"support-annotations" : "com.android.support:support-annotations:${versions.support}",
"support-appcompat-v7": "com.android.support:appcompat-v7:${versions.support}",
]
//依赖第三方配置
dependencies = [
//RxLifecycle [https://github.com/trello/RxLifecycle]
"rxlifecycle" : "com.trello.rxlifecycle3:rxlifecycle:3.1.0",
"rxlifecycle-components": "com.trello.rxlifecycle3:rxlifecycle-components:3.1.0",
//RxJava、RaAndroid [https://github.com/ReactiveX/RxAndroid]
"rxjava" : "io.reactivex.rxjava2:rxjava:2.2.17",
"rxandroid" : "io.reactivex.rxjava2:rxandroid:2.1.1",
//Commons Lang https://mvnrepository.com/artifact/org.apache.commons/commons-lang3
"commons-lang3" : "org.apache.commons:commons-lang3:3.9",
//xLog [https://github.com/elvishew/xLog]
"xlog" : "com.elvishew:xlog:1.6.1",
//xUtils [https://github.com/wyouflf/xUtils3]
"xutils" : "org.xutils:xutils:3.8.4",
//沉浸式状态栏 [https://github.com/niorgai/StatusBarCompat]
"StatusBarCompat" : "com.github.niorgai:StatusBarCompat:2.3.3",
//侧滑返回 [https://github.com/anzewei/ParallaxBackLayout]
"parallaxbacklayout" : "com.github.anzewei:parallaxbacklayout:1.1.9",
//Retrofit2 [https://github.com/square/retrofit]
"retrofit" : "com.squareup.retrofit2:retrofit:2.7.1",
//converter-gson [http://www.mvnrepository.com/artifact/com.squareup.retrofit2/converter-gson]
"converter-gson" : "com.squareup.retrofit2:converter-gson:2.7.1",
//logging-interceptor [http://www.mvnrepository.com/artifact/com.squareup.okhttp3/logging-interceptor]
"logging-interceptor" : "com.squareup.okhttp3:logging-interceptor:4.4.0",
//fastjson [https://github.com/alibaba/fastjson]
"fastjson" : "com.alibaba:fastjson:1.1.71.android",
//Glide [https://github.com/bumptech/glide]
"glide" : "com.github.bumptech.glide:glide:4.11.0",
"glide-compiler" : "com.github.bumptech.glide:compiler:4.11.0",
//"YoYo" 动画效果 AndroidViewAnimations [https://github.com/daimajia/AndroidViewAnimations]
"easing" : "com.daimajia.easing:library:2.1@aar",
"androidanimations" : "com.daimajia.androidanimations:library:2.3@aar",
//圆形ImageView [https://github.com/hdodenhof/CircleImageView]
"circleimageview" : "de.hdodenhof:circleimageview:3.1.0",
//Bootstrap [https://github.com/DragonsQC/Android-Bootstrap]
"Android-Bootstrap" : "com.github.DragonsQC:Android-Bootstrap:1.1.0",
//KenBurnsView [https://github.com/flavioarfaria/KenBurnsView]
"kenburnsview" : "com.flaviofaria:kenburnsview:1.0.7",
//拖拽排序 Advanced RecyclerView [https://github.com/h6ah4i/android-advancedrecyclerview]
"advrecyclerview" : "com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:1.0.0",
]
}