build.gradle
3.21 KB
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
93
94
95
96
97
98
99
100
101
apply plugin: 'com.android.library'
android {
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.appcompat:appcompat:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
// api('cn.cnlive.b2c:cnliveb2c:1.0.0-20191217.063321-17') {
// exclude group: 'com.github.bumptech.glide'
// }
// api 'cn.cnlive.b2c:nicevideoplayer:1.0.0-20191206.090854-2'
// api 'cn.cnlive.b2c:udesk-sdk-ui:1.0.0'
/** 圆形图片处理 androidx **/
implementation "de.hdodenhof:circleimageview:$rootProject.circleimageview"
/*下拉刷新 上拉加载更多*/
implementation 'com.github.Aspsine:SwipeToLoadLayout:1.0.4'
/*http类 有jar包*/
implementation 'com.zhy:okhttputils:2.6.2'
/*fastjson */
implementation 'com.alibaba:fastjson:1.2.61'
/*轮播图*/
// implementation 'com.bigkoo:convenientbanner:2.1.5'
implementation 'com.bigkoo:convenientbanner:2.0.5'
/*滚动播放的公告控件*/
implementation 'com.github.czy1121:noticeview:1.1.0'
/*图片剪切 */
implementation('com.kevin:crop:1.0.2') {
// 如果已经引入 support:appcompat-v7 可以加上这句话
exclude group: 'com.android.support', module: 'appcompat-v7'
}
/*倒计时控件*/
implementation 'com.github.iwgang:countdownview:2.1.6'
/*可添加header和footer的recyclerview adapter*/
implementation 'com.songhang:smart-headerfooter-recyclerview:1.0.1'
/*二维码*/
// implementation 'com.google.zxing:core:3.3.0'
// implementation ('cn.yipianfengye.android:zxing-library:2.2'){
// // 如果已经引入 support:appcompat-v7 可以加上这句话
// exclude group: 'com.google.zxing'
// transitive = false
// }
/*动态权限 androidx*/
implementation 'pub.devrel:easypermissions:3.0.0'
/*图片选择*/
implementation 'me.iwf.photopicker:PhotoPicker:0.9.5@aar'
/*图片选择*/
implementation 'me.iwf.photopicker:PhotoPicker:0.9.12@aar'
/*一个Android TabLayout库*/
implementation 'com.flyco.tablayout:FlycoTabLayout_Lib:2.1.2@aar'
// /*应用卡顿检测*/
// debugImplementation 'com.github.markzhai:blockcanary-android:1.5.0'
// releaseImplementation 'com.github.markzhai:blockcanary-no-op:1.5.0'
// /*友盟统计*/
// implementation 'com.umeng.analytics:analytics:latest.integration'
/*Float Labeled EditText*/
implementation 'com.wrapp.floatlabelededittext:library:0.0.6'
/* 状态栏颜色 */
implementation 'com.githang:status-bar-compat:0.7'
/*微信*/
// implementation 'com.tencent.mm.opensdk:wechat-sdk-android-with-mta:+'
/*自定义各种形状的imageview */
implementation 'com.github.siyamed:android-shape-imageview:0.9.+@aar'
implementation 'com.cnlive.libs:base:1.7.6.18'
implementation project(path: ':library_baidumap')
implementation project(path: ':core:base')
}