-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
executable file
·59 lines (57 loc) · 2.82 KB
/
config.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
ext {
//android开发版本配置
android = [
compileSdkVersion: 28,
buildToolsVersion: "28.0.3",
applicationId : "com.play.element",
minSdkVersion : 17,
targetSdkVersion : 28,
versionCode : 1,
versionName : "1.0",
]
//version配置
versions = [
"support-version": '28.0.0',
"junit-version" : "4.12",
]
//support配置
support = [
"constraint-layout" : "1.0.0-beta2",
'design' : "com.android.support:design:${versions["support-version"]}",
'animated-vector-drawable': "com.android.support:animated-vector-drawable:${versions["support-version"]}",
'junit' : "junit:junit:${versions["junit-version"]}",
]
//依赖第三方配置
dependencies = [
//rxjava
"rxjava" : "io.reactivex.rxjava2:rxjava:2.2.3",
"rxandroid" : "io.reactivex.rxjava2:rxandroid:2.1.0",
//rx系列与View生命周期同步
"rxlifecycle" : "com.trello.rxlifecycle2:rxlifecycle:2.2.2",
"rxlifecycle-components": "com.trello.rxlifecycle2:rxlifecycle-components:2.2.2",
//rxbinding
"rxbinding" : "com.jakewharton.rxbinding2:rxbinding:2.1.1",
//rx 6.0权限请求
"rxpermissions" : "com.github.tbruyelle:rxpermissions:0.10.2",
//network
"okhttp" : "com.squareup.okhttp3:okhttp:3.10.0",
"retrofit" : "com.squareup.retrofit2:retrofit:2.4.0",
"converter-gson" : "com.squareup.retrofit2:converter-gson:2.4.0",
"adapter-rxjava" : "com.squareup.retrofit2:adapter-rxjava2:2.4.0",
"retrofit-cookie" : "com.github.franmontiel:PersistentCookieJar:v1.0.1",
"logging-interceptor" : "com.squareup.okhttp3:logging-interceptor:3.11.0",
"converter-gson" : "com.squareup.retrofit2:converter-gson:2.4.0",
//glide图片加载
"glide" : "com.github.bumptech.glide:glide:4.9.0",
"glide-compiler" : "com.github.bumptech.glide:compiler:4.9.0",
"glide-annotations" : "com.github.bumptech.glide:annotations:4.9.0",
//json解析
"gson" : "com.google.code.gson:gson:2.8.5",
//阿里
"fastjson" : "com.alibaba:fastjson:1.1.70.android",
//阿里路由框架
"arouter-api" : "com.alibaba:arouter-api:1.4.1",
"arouter-compiler" : "com.alibaba:arouter-compiler:1.2.2",
'androidx-annotation' : "androidx.annotation:annotation:1.0.0",
]
}