-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfig.gradle
92 lines (76 loc) · 4.86 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
92
ext {
android = [
compileSdkVersion : 28,
buildToolsVersion : "29.0.2",
applicationId : "com.zhengsr.wanandroid",
minSdkVersion : 19,
targetSdkVersion : 28,
"versionCode" : 1,
"versionName" : "1.1"
]
version = [
supportLibraryVersion : "28.0.0",
glideVersion : "4.9.0",
butterknifeversion : "8.4.0",
retrofitversion : "2.3.0",
]
dependencies = [
//base
"appcompat" : "com.android.support:appcompat-v7:${version["supportLibraryVersion"]}",
"cardview" : "com.android.support:cardview-v7:${version["supportLibraryVersion"]}",
"support" : "com.android.support:support-v4:${version["supportLibraryVersion"]}",
"recyclerview" : "com.android.support:recyclerview-v7:${version["supportLibraryVersion"]}",
"design" : "com.android.support:design:${version["supportLibraryVersion"]}",
"constraint-layout" : "com.android.support.constraint:constraint-layout:1.1.3",
"fastjson" : "com.alibaba:fastjson:1.1.71.android",
"converter-fastjson" : "org.ligboy.retrofit2:converter-fastjson-android:2.1.0",
//activity 生命周期
"zlifecycler" : "com.github.LillteZheng:ZlifeCycle:v1.0",
//rx系列
"rxjava" : "io.reactivex.rxjava2:rxjava:2.2.10",
"rxandroid" : "io.reactivex.rxjava2:rxandroid:2.1.1",
//fragment
"fragmentation" : "me.yokeyword:fragmentation:1.3.7",
//权限
"permission" : "com.github.dfqin:grantor:2.5",
//recycler
"recycleradapter" : "com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.50",
//glide
"glide" : "com.github.bumptech.glide:glide:${version["glideVersion"]}",
"glidecomliper" : "com.github.bumptech.glide:compiler:${version["glideVersion"]}",
//更新
"zdload" : "com.github.LillteZheng:ZDownLoader:v2.1",
//leakcanary
"leakcanary-android" : "com.squareup.leakcanary:leakcanary-android:2.0-beta-3",
//butterknife
"butterknife" : "com.jakewharton:butterknife:${version["butterknifeversion"]}",
"buttonknife_compiler" : "com.jakewharton:butterknife-compiler:${version["butterknifeversion"]}",
//加载动画
"avloading" :"com.wang.avi:library:2.1.3",
//viewpager
"viewpager" :"com.github.LillteZheng:ViewPagerHelper:v2.6",
//网络
"retorfit" : "com.squareup.retrofit2:retrofit:${version["retrofitversion"]}",
"scalars" : "com.squareup.retrofit2:converter-scalars:${version["retrofitversion"]}",
"okio" : "com.squareup.retrofit2:converter-scalars:2.3.0",
"okhttp" : "com.squareup.okhttp3:okhttp:3.8.1",
"okhttp-logging" : "com.squareup.okhttp3:logging-interceptor:3.4.1",
"rxretorfit-rxjava" : "com.squareup.retrofit2:adapter-rxjava2:${version["retrofitversion"]}",
"cookiejar" : "com.github.franmontiel:PersistentCookieJar:v1.0.1",
//rqcode
"rqcode" : "com.king.zxing:zxing-lite:1.1.3",
//recycyclerview工具类
"BaseRecyclerViewAdapterHelper" : "com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.50",
//状态栏
"statusbar" : "com.gyf.immersionbar:immersionbar:3.0.0",
//webview
"webviewheper" : "com.github.LillteZheng:ZWebHelper:v1.83",
//mul
"multidex" : "com.android.support:multidex:1.0.3",
"ariesui" : "com.github.LillteZheng:AriesUI:v1.08",
//下拉,上拉刷新
"smartrefreshLayout" : "com.scwang.smartrefresh:SmartRefreshLayout:1.1.0",
"smartrefreshHeader" : "com.scwang.smartrefresh:SmartRefreshHeader:1.1.0",
"flowhelper" : "com.github.LillteZheng:FlowHelper:v1.18"
]
}