-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcommonlibs4.gradle
More file actions
63 lines (63 loc) · 3.78 KB
/
commonlibs4.gradle
File metadata and controls
63 lines (63 loc) · 3.78 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
def config = rootProject.ext //配置
def librarys = config.dependencies //
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation librarys.blankj
implementation librarys.eventbus
implementation librarys.glide47
implementation librarys.annotationProcessorglide47compiler
// https://github.com/scwang90/SmartRefreshLayout
// 注意:分包之后不会有默认的Header和Footer需要手动添加!还是原来的三种方法!
implementation 'com.scwang.smart:refresh-layout-kernel:2.0.3' //核心必须依赖
implementation 'com.scwang.smart:refresh-header-classics:2.0.3' //经典刷新头
implementation 'com.scwang.smart:refresh-header-radar:2.0.3' //雷达刷新头
implementation 'com.scwang.smart:refresh-header-falsify:2.0.3' //虚拟刷新头
implementation 'com.scwang.smart:refresh-header-material:2.0.3' //谷歌刷新头
implementation 'com.scwang.smart:refresh-header-two-level:2.0.3' //二级刷新头
implementation 'com.scwang.smart:refresh-footer-ball:2.0.3' //球脉冲加载
implementation 'com.scwang.smart:refresh-footer-classics:2.0.3' //经典加载
// implementation project(':commonlibs:smartrefreshlayout:refresh-footer')
// implementation project(':commonlibs:smartrefreshlayout:refresh-header')
// implementation project(':commonlibs:smartrefreshlayout:refresh-layout')
implementation "com.squareup.okhttp3:okhttp:4.9.1"//3.9.1
// implementation librarys.okhttpVersion
// implementation "com.zhy:okhttputils:2.6.2"
implementation 'pub.devrel:easypermissions:3.0.0'
// implementation 'com.yanzhenjie:permission:2.0.3'
// implementation project(':commonlibs:bhunheku:libokhttputils')
// implementation project(':commonlibs:bhunheku:libyanzhenjieandpermission')
implementation 'com.github.GeekCodesTeam.geeklibs:libokhttputils:1.6.4'
implementation 'com.github.GeekCodesTeam.geeklibs:libyanzhenjieandpermission:1.6.4'
implementation "com.github.permissions-dispatcher:permissionsdispatcher:4.8.0"
annotationProcessor "com.github.permissions-dispatcher:permissionsdispatcher-processor:4.8.0"
// implementation 'com.github.ittianyu:BottomNavigationViewEx:2.0.4'
implementation 'io.github.youth5201314:banner:2.2.2'
//
api 'com.github.ctiao:DanmakuFlameMaster:0.9.25'
api 'com.github.ctiao:ndkbitmap-armv7a:0.9.21'
api 'com.github.wseemann:FFmpegMediaMetadataRetriever-core:1.0.15'
api 'com.github.wseemann:FFmpegMediaMetadataRetriever-native:1.0.15'
api 'com.aliyun.sdk.android:AliyunPlayer:4.5.0-full'
api 'com.alivc.conan:AlivcConan:0.9.5'
// 解决冲突bufen
api 'cn.jzvd:jiaozivideoplayer:7.5.0'
api "com.google.android.exoplayer:exoplayer:2.15.0"
// api 'com.google.android.exoplayer:exoplayer-ui:2.13.2'
// api "com.google.android.exoplayer:exoplayer-core:2.13.2"
// api "com.google.android.exoplayer:exoplayer-dash:2.13.2"
// api "com.google.android.exoplayer:exoplayer-smoothstreaming:2.13.2"
// api "com.google.android.exoplayer:exoplayer-hls:2.13.2"
api "com.google.android.exoplayer:exoplayer-rtsp:2.15.0"
api "com.google.android.exoplayer:extension-rtmp:2.15.0"
api "com.github.CarGuo:GSYIjkJava:1.0.0"
api('com.github.CarGuo.GSYVideoPlayer:gsyVideoPlayer:v8.1.5-jitpack') {
// exclude module: 'gsyVideoPlayer-armv5'
// exclude module: 'gsyVideoPlayer-armv7a'
// exclude module: 'gsyVideoPlayer-armv64'
// exclude module: 'gsyVideoPlayer-x86'
// exclude module: 'gsyVideoPlayer-x86_64'
exclude group: 'com.github.CarGuo', module: 'GSYIjkJava'
exclude group: 'com.google.android.exoplayer', module: 'exoplayer'
exclude group: 'com.google.android.exoplayer', module: 'extension-rtmp'
}
}