forked from didi/DoKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
executable file
·196 lines (186 loc) · 13.5 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
ext {
publish_config = [
//0:发布到到本地localRepoURL仓库
//1:发布到滴滴内部仓库 一般不建议使用 如果需要发布到滴滴内网仓库需要将版本号改得比较大 假如版本号跟jcenter上的一致会由于缓存导致没法下载最新的jcenter的线上代码
//2:发布到maven_central远程仓库
archives_type: 0,
//0:依赖dokit本地module运行
//1:依赖dokit远程aar运行
run_type : 0,
//0:外部公共环境
//1:内部私有环境,使用私有仓库构建,仓库地址在 local.properties 中添加 PRIVATE_REPOSITORY_URL
run_env : 1,
//是否使用本地仓库,需要使用绝对路径,仓库地址在 local.properties 中添加 LOCAL_REPOSITORY_URL
use_local : true,
group_id : 'io.github.didi.dokit',
version : '3.7.1'
]
android = [compileSdkVersion : 29,
applicationId : "com.didichuxing.doraemondemo",
minSdkVersion_16 : 16,
minSdkVersion_21 : 21,
targetSdkVersion : 30,
//app版本号
versionCode : 1,
versionName : "1.0.0",
glide_version : "4.9.0",
kotlin_version_v13 : "1.3.72",
kotlin_version_v14 : "1.4.32",
kotlin_version_v15 : "1.5.31",
kotlinx_coroutines_version_v13: "1.3.7",
kotlinx_coroutines_version_v14: "1.4.3",
booster_version : "4.0.0",
agp_module_verson : "4.2.2",
agp_plugin_verson : "4.2.2",
ktor : "1.5.4",
okhttp_v2 : "2.7.5",
okhttp_v3 : "3.14.7",
okhttp_v4 : "4.7.0",
coil_v11 : "1.1.0",
coil_v13 : "1.3.2",
]
dependencies = [// ###### android library start ######
"multidex" : 'androidx.multidex:multidex:2.0.0',
"appcompat" : 'androidx.appcompat:appcompat:1.1.0',
"cardview" : 'androidx.cardview:cardview:1.0.0',
"recyclerview" : 'androidx.recyclerview:recyclerview:1.1.0',
"material" : 'com.google.android.material:material:1.1.0',
"annotation" : "androidx.annotation:annotation:1.1.0",
"kotlin_v13" : "org.jetbrains.kotlin:kotlin-stdlib:${android["kotlin_version_v13"]}",
"kotlin_v14" : "org.jetbrains.kotlin:kotlin-stdlib:${android["kotlin_version_v14"]}",
"coroutines-core_v13" : "org.jetbrains.kotlinx:kotlinx-coroutines-core:${android["kotlinx_coroutines_version_v13"]}",
"coroutines-core_v14" : "org.jetbrains.kotlinx:kotlinx-coroutines-core:${android["kotlinx_coroutines_version_v14"]}",
"coroutines-android_v13" : "org.jetbrains.kotlinx:kotlinx-coroutines-android:${android["kotlinx_coroutines_version_v13"]}",
"coroutines-android_v14" : "org.jetbrains.kotlinx:kotlinx-coroutines-android:${android["kotlinx_coroutines_version_v14"]}",
"core-ktx" : "androidx.core:core-ktx:1.3.0",
"activity-ktx" : "androidx.activity:activity-ktx:1.1.0",
"webkit" : "androidx.webkit:webkit:1.3.0",
"volley" : "com.android.volley:volley:1.1.1",
"fragment" : "androidx.fragment:fragment:1.2.0",
"fragment-ktx" : "androidx.fragment:fragment-ktx:1.2.0",
"drawerlayout" : "androidx.drawerlayout:drawerlayout:1.1.1",
//constraintLayout
"constraintLayout" : 'androidx.constraintlayout:constraintlayout:1.1.3',
//lifecycle
"lifecycle-viewmodel-savedstate": "androidx.lifecycle:lifecycle-viewmodel-savedstate:2.2.0",
"lifecycle-comm" : "androidx.lifecycle:lifecycle-common-java8:2.2.0",
//test
"junit" : "junit:junit:4.12",
//第三方
"guava" : "com.google.guava:guava:27.1-android",
//表格
//"SmartTable" : 'com.github.huangyanbin:SmartTable:2.2.0',
"retrofit2" : "com.squareup.retrofit2:retrofit:2.9.0",
"retrofit2_scalars" : "com.squareup.retrofit2:converter-scalars:2.9.0",
"retrofit2_gson" : "com.squareup.retrofit2:converter-gson:2.9.0",
"retrofit2_rxjava2" : "com.squareup.retrofit2:adapter-rxjava2:2.9.0",
"rxAndroid" : "io.reactivex.rxjava2:rxandroid:2.1.1",
//暂时不支持3.14.0以上的okhttp版本
"okhttp_v2" : "com.squareup.okhttp:okhttp:${android["okhttp_v2"]}",
"okhttp_v3" : "com.squareup.okhttp3:okhttp:${android["okhttp_v3"]}",
"okhttp_v4" : "com.squareup.okhttp3:okhttp:${android["okhttp_v4"]}",
//okSocket wiki:https://www.jianshu.com/p/8ee3ee766265
"oksocket" : "com.tonystark.android:socket:4.2.2",
"oksocket-server" : "com.tonystark.android:socket-server:4.2.2",
//ktor
"ktor_server_core" : "io.ktor:ktor-server-core:${android["ktor"]}",
"ktor_server_cio" : "io.ktor:ktor-server-cio:${android["ktor"]}",
"ktor_server_netty" : "io.ktor:ktor-server-netty:${android["ktor"]}",
"ktor_server_websockets" : "io.ktor:ktor-websockets:${android["ktor"]}",
"ktor_client_websockets" : "io.ktor:ktor-client-websockets:${android["ktor"]}",
"ktor_client_cio" : "io.ktor:ktor-client-cio:${android["ktor"]}",
"ktor_client_apache" : "io.ktor:ktor-client-apache:${android["ktor"]}",
"ktor_client_android" : "io.ktor:ktor-client-android:${android["ktor"]}",
"ktor_client_okhttp" : "io.ktor:ktor-client-okhttp:${android["ktor"]}",
"ktor_jackson" : "io.ktor:ktor-jackson:${android["ktor"]}",
//将urlconnection代理到okhttp
//"okhttp_urlconnection" : "com.squareup.okhttp3:okhttp-urlconnection:3.12.1",
"okio" : "com.squareup.okio:okio:1.17.2",
"utilcode" : 'com.blankj:utilcodex:1.29.0',
"glide" : "com.github.bumptech.glide:glide:${android["glide_version"]}",
"glide_v3" : 'com.github.bumptech.glide:glide:3.8.0',
"glide_okhttp3" : "com.github.bumptech.glide:okhttp3-integration:${android["glide_version"]}",
"glide_compiler" : "com.github.bumptech.glide:compiler:${android["glide_version"]}",
"coil_v11" : "io.coil-kt:coil:${android["coil_v11"]}",
"coil_v13" : "io.coil-kt:coil:${android["coil_v13"]}",
"picasso" : 'com.squareup.picasso:picasso:2.71828',
"fresco" : 'com.facebook.fresco:fresco:1.13.0',
"fresco-processors" : "jp.wasabeef:fresco-processors:2.1.0",
"image-loader" : 'com.nostra13.universalimageloader:universal-image-loader:1.9.5',
"rootbeer-lib" : 'com.scottyab:rootbeer-lib:0.0.8',
"gson" : 'com.google.code.gson:gson:2.8.2',
"zxing" : 'com.google.zxing:core:3.3.0',
"free_reflection" : 'me.weishu:free_reflection:2.1.0',
"leakcanary_android" : 'com.squareup.leakcanary:leakcanary-android:2.7',
"haha" : 'com.squareup.haha:haha:2.0.4',
"debug-db" : "com.amitshekhar.android:debug-db:1.0.6",
"debug-db-encrypt" : "com.amitshekhar.android:debug-db-encrypt:1.0.6",
//https://github.com/Tencent/wcdb
"wcdb" : "com.tencent.wcdb:wcdb-android:1.0.8",
"weex_inspector" : "com.taobao.android:weex_inspector:0.24.2.11",
"weex_sdk" : "org.apache.weex:sdk:0.28.0",
"brvah" : 'com.github.CymChad:BaseRecyclerViewAdapterHelper:3.0.4',
"easy_refresh_layout" : 'com.github.anzaizai:EasyRefreshLayout:1.3.1',
"android_spinkit" : 'com.github.ybq:Android-SpinKit:1.4.0',
"jsonviewer" : "com.yuyh.json:jsonviewer:1.0.6",
"room_runtime" : 'androidx.room:room-runtime:2.0.0',
"room_compile" : 'androidx.room:room-compiler:2.0.0',
"didi_http" : 'com.didichuxing.foundation:http:2.1.0.86',
"didi_rpc" : 'com.didichuxing.foundation:rpc:2.1.0.86',
"okgo" : "com.lzy.net:okgo:3.0.4",
//高德地图定位
"amap_location" : 'com.amap.api:location:latest.integration',
//高德地图
"amap_map2d" : 'com.amap.api:map2d:latest.integration',
"amap_map3d" : 'com.amap.api:map3d:latest.integration',
"amap_search" : 'com.amap.api:search:latest.integration',
"amap_navi" : 'com.amap.api:navi-3dmap:latest.integration',
//腾讯地图定位
"tencent_location" : 'com.tencent.map.geolocation:TencentLocationSdk-openplatform:7.2.5',
"tencent_map" : 'com.tencent.map:tencent-map-vector-sdk:4.4.0',
"tencent_map_util" : 'com.tencent.map:sdk-utilities:1.0.6',
"easypermissions" : "pub.devrel:easypermissions:2.0.1",
//跨进程通信框架
"abridge" : "com.sjtu.yifei:abridge:1.0.1",
"jsoup" : "org.jsoup:jsoup:1.13.1",
"mimecraft" : "com.squareup.mimecraft:mimecraft:1.1.1",
//tencent x5 浏览器 https://x5.tencent.com/
"tbs" : "com.tencent.tbs.tbssdk:sdk:43903",
// "swipeback" : "me.imid.swipebacklayout.lib:library:1.1.0"
"flexbox" : 'com.google.android:flexbox:1.0.0',
"auto_service" : 'com.google.auto.service:auto-service:1.0',
"hummer" : 'io.github.didi.hummer:hummer:0.3.23',
"sandhook_hooklib" : 'com.swift.sandhook:hooklib:4.2.1',
"sandhook_nativehook" : 'com.swift.sandhook:nativehook:4.2.1',
"sandhook_xposedcompat" : 'com.swift.sandhook:xposedcompat:4.2.1',
"epic" : 'me.weishu:epic:0.11.1',
// "epic" : 'com.github.tiann:epic:0.11.2',
]
//定义全局方法
needKotlinV14 = {
String version = publish_config["version"]
//分割字符串
String[] vs = version.split("\\.")
return vs.length == 3
}
usePrivateEnv = {
def runEnv = publish_config["run_env"]
return runEnv == 1
}
useLocalRepository = {
def useLocal = publish_config["use_local"]
return useLocal
}
privateRepository = {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
def url = properties.getProperty('PRIVATE_REPOSITORY_URL', "")
return url
}
localRepository = {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
def url = properties.getProperty('LOCAL_REPOSITORY_URL', "")
return url
}
}