build.gradle
1.62 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "com.alibaba:arouter-register:1.0.2"
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url 'https://dl.bintray.com/granzon/cnliveLibs'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
compileSdkVersion = 27
buildToolsVersion = "27.0.3"
minSdkVersion = 16
targetSdkVersion = 27
//support 相关
supportV4 = '27.1.0'
appcompatV7 = '27.1.0'
design = '27.1.0'
supportV13 = '27.1.0'
recyclerviewV7 = '27.1.0'
cardviewV7 = '27.1.0'
//GSON
gson = '2.8.2'
//eventbus
eventbus = '3.1.1'
//视讯云相关
libCnUtil = '3.0.5'
libCnencipher = '1.1.1'
//qmui
qmui = '1.1.5'
//SmartRefresh
SmartRefreshLayout = '1.1.0-alpha-1'
SmartRefreshHeader = '1.1.0-alpha-1'
//retrofit2
retrofit = '2.3.0'
converterGson = '2.3.0'
adapterRxjava2 = '2.3.0'
//okhttp3
okhttp = '3.8.1'
loggingInterceptor = '3.8.1'
//glide
glide = '4.5.0'
glideTransformations = '3.0.1'
compiler = '4.5.0'
recyclerviewAnimators = '2.2.6'
//基础库
libBase = '1.0.6'
libNetwork = '1.0.11'
libEmoj = '1.1.2'
libMenu = '1.0.2'
appArch = '1.0.0'
//阿里路由框架
arouterApiVersion = '1.4.0'
arouterCompilerVersion = '1.2.1'
happychina = '1.0.4'
}