-
Notifications
You must be signed in to change notification settings - Fork 605
/
build.gradle
274 lines (253 loc) · 7.61 KB
/
build.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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply from: "config.gradle"
buildscript {
ext.plugin_version="0.1.4"
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://maven.google.com' }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.1'
classpath 'com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.4'
classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2'
classpath 'me.tatarka:gradle-retrolambda:3.7.0'
classpath 'me.ele:lancet-plugin:1.0.5'
classpath "com.didichuxing.tools:droidassist:1.1.0"
classpath "gradle.plugin.cn.cxzheng.methodTracePlugin:tracemanplugin:1.0.4"
classpath 'com.mogujie.gradle:tinyPicPlugin:1.1.4'
classpath 'com.tencent.mm:AndResGuard-gradle-plugin:1.2.17'
classpath "com.bytedance.android.byteX:base-plugin:${plugin_version}"
// Add bytex plugins' dependencies on demand. 按需添加插件依赖
classpath "com.bytedance.android.byteX:access-inline-plugin:${plugin_version}"
classpath "com.bytedance.android.byteX:shrink-r-plugin:${plugin_version}"
classpath "com.bytedance.android.byteX:const-inline-plugin:${plugin_version}"
classpath "com.bytedance.android.byteX:field-assign-opt-plugin:${plugin_version}"
classpath "com.bytedance.android.byteX:getter-setter-inline-plugin:${plugin_version}"
classpath "com.bytedance.android.byteX:method-call-opt-plugin:${plugin_version}"
classpath "com.bytedance.android.byteX:closeable-check-plugin:${plugin_version}"
classpath 'com.smallsoho.mobcase:McImage:1.5.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven {
url "https://jitpack.io"
}
maven { url "https://plugins.gradle.org/m2/" }
maven {
url 'http://maven.aliyun.com/nexus/content/repositories/releases/'
}
}
}
//// 1、删除根目录下的 build 文件
//task clean(type: Delete) {
// delete rootProject.buildDir
//}
//
//// 2、将 doc 复制到 build/target 目录下
//task copyDocs(type: Copy) {
// from 'src/main/doc'
// into 'build/target/doc'
//}
//
//// 3、执行时会复制源文件到目标目录,然后从目标目录删除所有非复制文件
//task syncFile(type:Sync) {
// from 'src/main/doc'
// into 'build/target/doc'
//}
//
//
//project.task('JsonChao1').doFirst {
// println "Beginning of execute JsonChao Task"
//}
//
//project.tasks.create('JsonChao2').doLast {
// println "Ending of execute JsonChao Task"
//}
//
//project.task('JsonChao3', group: "JsonChao", description: "my tasks", dependsOn: ["JsonChao1", "JsonChao2"] ).doLast {
// println "execute JsonChao3 Task"
//}
//
//
//// 1、声明一个名为 JsonChao 的 gradle task
//task JsonChao
//
//JsonChao {
//
// // 2、在 JsonChao task 闭包内输出 hello~,
// // 执行在 gradle 生命周期的第二个阶段,即配置阶段。
// println("hello~")
//
// // 3、给 task 附带一些 执行动作(Action),执行在
// // gradle 生命周期的第三个阶段,即执行阶段。
// doFirst {
// println("start")
// }
//
// doLast {
// println("end")
// }
//}
//
//// 4、除了上述这种将声明与配置、Action 分别定义
//// 的方式之外,也可以直接将它们结合起来。
//// 这里我们又定义了一个 Android task,它依赖于 JsonChao
//// task,也就是说,必须先执行完 JsonChao task,才能
//// 去执行 Android task,由此,它们之间便组成了一个
//// 有向无环图:JsonChao task => Android task
//task Andorid(dependsOn:"JsonChao") {
// doLast {
// println("end?")
// }
//}
//
//defaultTasks "Gradle_First", "Gradle_Last"
//
//task Gradle_First() {
// ext.good = true
//}
//
//task Gradle_Last() {
// doFirst {
// println Gradle_First.good
// }
// doLast {
// println "I am not $Gradle_First.name"
// }
//}
/**
* Project API 详解
*/
/**
* 1、getAllProjects 使用示例
*/
//this.getProjects()
//
//def getProjects() {
// println "<================>"
// println " Root Project Start "
// println "<================>"
// // getAllprojects 方法返回一个包含根 project 与其子 project 的 Set 集合
// // eachWithIndex 方法用于遍历集合、数组等可迭代的容器,
// // 并同时返回下标,不同于 each 方法仅返回 project
// this.getAllprojects().eachWithIndex { Project project, int index ->
// // 下标为 0,表明当前遍历的是 rootProject
// if (index == 0) {
// println "Root Project is $project"
// } else {
// println "child Project is $project"
// }
// }
//}
/**
* 2、getAllsubproject 使用示例
*/
//this.getSubProjects()
//
//def getSubProjects() {
// println "<================>"
// println " Sub Project Start "
// println "<================>"
// // getSubProjects 方法返回一个包含子 project 的 Set 集合
// this.getSubprojects().each { Project project ->
// println "child Project is $project"
// }
//}
//this.getParentProject()
//
//def getParentProject() {
// parentName = this.getParent().name
// println "my parent project is $parentName"
//}
/**
* 4、getRootProject 使用示例
*/
//this.getRootPro()
//
//def getRootPro() {
// def rootProjectName = this.getRootProject().name
// println "root project is $rootProjectName"
//}
//
///**
// * 5、project 使用示例
// */
//
//// 1、闭包参数可以放在括号外面
//project("app") { Project project ->
// apply plugin: 'com.android.application'
//}
//
//// 2、更简洁的写法是这样的
//project("app") {
// apply plugin: 'com.android.application'
//}
//
///**
// * 6、allprojects 使用示例
// */
//
//// 同 project 一样的更简洁写法
//allprojects {
// group "com.json.chao"
// version "1.0.0"
//}
//
///**
// * 7、subprojects 使用示例
// */
//
//// 给所有的子工程引入 将 aar 文件上传置 Maven 服务器的配置脚本
//subprojects {
// if (project.plugins.hasPlugin("com.android.library")) {
// apply from: '../publishToMaven.gradle'
// }
//}
/**
* 1、路径获取 API
*/
//println "the root file path is:" + getRootDir().absolutePath
//println "this build file path is:" + getBuildDir().absolutePath
//println "this Project file path is:" + getProjectDir().absolutePath
/**
* 1、文件定位之 file
*/
//this.getContent("config.gradle")
//
//def getContent(String path) {
// try {
// // 不同与 new file 的需要传入 绝对路径 的方式,
// // file 从相对于当前的 project 工程开始查找
// def mFile = file(path)
// println mFile.text
// } catch (GradleException e) {
// println e.toString()
// return null
// }
//}
/**
* 1、文件定位之 files
*/
//this.getContent("config.gradle", "build.gradle")
//
//def getContent(String path1, String path2) {
// try {
// // 不同与 new file 的需要传入 绝对路径 的方式,
// // file 从相对于当前的 project 工程开始查找
// def mFiles = files(path1, path2)
// println mFiles[0].text + mFiles[1].text
// } catch (GradleException e) {
// println e.toString()
// return null
// }
//}