build.gradle
1.6 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply from: "config.gradle"
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:3.5.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url maven.mavenMixedUrl
credentials { username = nexusId;password = nexusPw }
}
maven {
url "https://jitpack.io"
}
maven {
url 'https://dl.bintray.com/granzon/cnlive'
}
maven {
url 'https://dl.bintray.com/granzon/cnliveLibs'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
supportV4 = '27.1.0'
appcompatV7 = '27.1.0'
recyclerviewV7 = '27.1.0'
constraintLayout = '1.1.2'
//androidX
androidXAppcompat = '1.0.0'
androidXRecyclerview = '1.0.0'
androidXConstraintlayout = '1.1.3'
androidX_legacy_support_v4 = '1.0.0'
glide = '4.11.0'
glideTransformations = '4.1.0'
compiler = '4.11.0'
easypermissions = '1.0.0'
rotatephotoview = '1.0.5'
libCnUtil = '3.1.0'
libCnVideo = '3.2.3'
qmui = '1.1.5'
libLargeImage = '1.0.4-androidx'
libBase = '2.0.0'
libVideoQiniu = '1.0.7.2'
//阿里路由框架
arouterApiVersion = '1.5.0'
arouterCompilerVersion = '1.2.1'
libNewMediaPicker = '1.0.2.3'
}