-
Notifications
You must be signed in to change notification settings - Fork 26
/
dependencies.gradle
89 lines (73 loc) · 3.28 KB
/
dependencies.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
ext {
//Android
androidBuildToolsVersion = "26.0.2"
androidMinSdkVersion = 16
androidTargetSdkVersion = 25
androidCompileSdkVersion = 25
supportLibraryVersion = '25.3.1'
otherLibraryVersion = '25.3.1'
applicationId = 'com.example.dev'
versionCode = 1
versionName = '1.0'
constraintLayout = '1.0.2'
//ViewLibraries
bnb = '1.4.1'
citypickerview = '1.0.0'
rxgalleryfinal = '0.0.9'
materialdialog = '1.3.1'
circleimageview = '2.1.0'
swipeRecyclerView = '1.0.4'
svprogresshud = '1.0.6'
photoview = '1.4.1'
convenientbanner = '2.0.5'
vptransforms = '1.2.32@aar'
lsdImgCoverFlow = 'v1.0.0'
GSYVideoPlayer = '2.0.8'
baservadapter = '2.9.3'
gwMarqueeLib = '1.0.4'
//DataLibraries
volley = '1.0.19'
glide = '3.7.0'
gson = '2.8.2'
androidDependencies = [
appcompat_v7 : "com.android.support:appcompat-v7:${supportLibraryVersion}",
support_v4 : "com.android.support:support-v4:${supportLibraryVersion}",
recyclerView : "com.android.support:recyclerview-v7:${supportLibraryVersion}",
cardview_v7 : "com.android.support:cardview-v7:${supportLibraryVersion}",
design : "com.android.support:design:${supportLibraryVersion}",
constraintLayout: "com.android.support.constraint:constraint-layout:${constraintLayout}",
]
viewDependencies = [
//BottomNavigation
bnb : "com.ashokvarma.android:bottom-navigation-bar:${bnb}",
//省市区三级联动
citypickerview : "liji.library.dev:citypickerview:${citypickerview}",
//图片/视频文件选择器
rxgalleryfinal : "cn.finalteam.rxgalleryfinal:library:${rxgalleryfinal}",
//Material Design 风格的自定义 Dialog
materialdialog : "me.drakeet.materialdialog:library:${materialdialog}",
//A circular ImageView for Android
circleimageview : "de.hdodenhof:circleimageview:${circleimageview}",
//SwipeRecyclerView
swipeRecyclerView: "com.yanzhenjie:recyclerview-swipe:${swipeRecyclerView}",
//精仿 iOS 的提示库 SVProgressHUD
svprogresshud : "com.bigkoo:svprogresshud:${svprogresshud}",
//图片浏览缩放控件
photoview : "com.bm.photoview:library:${photoview}",
//banner
convenientbanner : "com.bigkoo:convenientbanner:${convenientbanner}",
vptransforms : "com.ToxicBakery.viewpager.transforms:view-pager-transforms:${vptransforms}",
// CoverFlow
lsdImgCoverFlow : "com.github.lishide:ImgCoverFlow:${lsdImgCoverFlow}",
//GSYVideoPlayer 视频播放器
GSYVideoPlayer : "com.shuyu:GSYVideoPlayer:${GSYVideoPlayer}",
//RecyclerView 的强大的 BaseAdapter
baservadapter : "com.github.CymChad:BaseRecyclerViewAdapterHelper:${baservadapter}",
gwMarqueeLib : "com.gongwen:marqueelibrary:${gwMarqueeLib}",
]
dataDependencies = [
volley: "com.mcxiaoke.volley:library:${volley}",
glide : "com.github.bumptech.glide:glide:${glide}",
gson : "com.google.code.gson:gson:${gson}",
]
}