build.gradle
8.41 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
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
apply plugin: 'com.android.application'
apply plugin: 'com.antfortune.freeline'
//apply plugin: 'me.tatarka.retrolambda'
def releaseTime = {
return new Date().format("MM-dd~HH.mm.ss", TimeZone.getTimeZone("GMT+8:00"))
}
def isWindows = {
return System.getProperty('os.name').toLowerCase().contains('windows')
}
ext {
APP_VERSION_CODE = 6;
APP_VERSION_NAME = "v2.3-0608";
}
android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
lintOptions {
abortOnError false
}
freeline {
hack true
productFlavor 'QinNing'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
sourceSets {
main {
jniLibs.srcDirs = ['libs']
}
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/maven/com.belerweb/pinyin4j/pom.xml'
exclude 'META-INF/maven/com.belerweb/pinyin4j/pom.properties'
return false
}
defaultConfig {
minSdkVersion ANDROID_MIN_SDK_VERSION as int
targetSdkVersion ANDROID_TARGET_SDK_VERSION as int
versionCode APP_VERSION_CODE
versionName APP_VERSION_NAME
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
// jackOptions {
// enabled true
// }
}
signingConfigs {
myConfig {
storeFile file('./debug.keystore')
storePassword "android"
keyAlias 'androiddebugkey'
keyPassword 'android'
}
}
buildTypes {
release {
minifyEnabled false
signingConfig signingConfigs.myConfig
buildConfigField 'String', 'DEFAULT_IP', "\"192.168.31.202\""
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
buildConfigField 'String', 'MACHINE_TYPE', "\"gimi\""
buildConfigField 'boolean', 'USE_GLIDE', "false"
}
debug {
buildConfigField 'String', 'DEFAULT_IP', "\"192.168.200.241\""
buildConfigField 'String', 'MACHINE_TYPE', "\"gimi\""
buildConfigField 'boolean', 'USE_GLIDE', "false"
signingConfig signingConfigs.myConfig
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
jniDebuggable false
}
}
productFlavors {
}
applicationVariants.all { variant ->
variant.outputs.each { output ->
def oldFile = output.outputFile
println "*****" + oldFile + "*****"
if (variant.buildType.name.equals('release')) {
def fileName = output.outputFile.name.replace(output.outputFile.name,
/*variant.productFlavors[0].name*/ "方糖" + "-v${variant.versionCode}-${releaseTime()}.apk")
output.outputFile = new File(output.outputFile.parent, fileName)
// release to test folder
println fileName
}
}
}
return false
}
dependencies {
compile files('libs/decoder.jar')
compile files('libs/CinemaLibs-170426.jar')
compile files('libs/glide-3.7.0.jar')
compile files('libs/greenbluetoothlelib.jar')
compile project(':uil')
compile project(':volley')
compile project(':pinying')
compile project(':debug-db')
compile project(':BluetoothLightLib')
compile project(':switchcontrollib')
compile group: 'com.squareup.okhttp', name: 'okhttp', version: '2.7.5'
compile group: 'com.google.code.gson', name: 'gson', version: '2.7'
compile group: 'com.google.zxing', name: 'core', version: '3.3.0'
compile group: 'com.nineoldandroids', name: 'library', version: '2.4.0'
compile group: 'com.squareup.retrofit2', name: 'retrofit', version: '2.0.2'
compile group: 'com.squareup.retrofit2', name: 'converter-gson', version: '2.0.2'
compile 'com.umeng.analytics:analytics:latest.integration'
compile 'org.greenrobot:eventbus:3.0.0'
}
def getPwd(modifyPwd) {
return modifyPwd.replaceAll(".*:", "").trim()
}
def getName(modifyPwd) {
return new File(modifyPwd).getName().replace(".java", "");
}
task('buildRelease') << {
}
task releaseToTesting(type: Copy) {
from 'build/outputs/apk'
// into 'E:/py'
if (isWindows())
into '//192.168.200.241/root/apks'
else
into '/Volumes/root/apks'
include '*.apk'
exclude { details ->
details.file.name.contains('debug') ||
details.file.name.contains('release')
}
}
build.dependsOn clean
releaseToTesting {}.dependsOn build
build.shouldRunAfter clean
releaseToTesting {}.shouldRunAfter build
task tests(type: Copy) {
from 'build/outputs/apk'
if (isWindows())
into '//192.168.200.241/root/apks'
else
into '/Volumes/root/apks'
include '*.apk'
exclude { details ->
details.file.name.contains('debug') ||
details.file.name.contains('release')
}
}
task getType() {
def pwd1 = new File('build.gradle').getAbsolutePath()
def windows = isWindows();
def pwd = System.getProperty('os.name').toLowerCase().contains('windows') ? "windows" : "linux"
def pwd2 = System.getProperty('os.name').toLowerCase().contains('windows')
println pwd + " fuck " + windows + " seek " + pwd1 + " seek " + pwd2
}
task('gitCommit') << {
def debug = false;
def pull = "git pull"
pull.execute()
def cmdStatus = "git status ."
println "*****************execute $cmdStatus start*******************"
def var = cmdStatus.execute()/*.text.trim()*/
println "*****************execute $cmdStatus start*******************"
// println var.text
def outputStream = new StringBuffer();
var.waitForProcessOutput(outputStream, System.err)
def a = 0;
def commitMsg = "";
def commitDelMsg = "删除了";
def commitModMsg = "修改了";
def commitAddMsg = "添加了";
outputStream.toString().eachLine {
a++
if (it.contains("build.gradle")) {
println "pass build.gradle $it"
return
}
if (it.contains("deleted:")) {
def pwd = getPwd(it);
println "deleted pwd is :" + pwd
commitDelMsg += getName(pwd) + " "
if (!debug) {
def rm = "git rm " + pwd
def rmResult = rm.execute()
def rmOutputStream = new StringBuffer()
rmResult.waitForProcessOutput(rmOutputStream, System.err)
}
return
}
if (it.contains("modified:")) {
def pwd = getPwd(it);
println "modified pwd is :" + pwd
commitModMsg += getName(pwd) + " "
if (!debug) {
def add = "git add " + pwd
def addResult = add.execute()
def addOutputStream = new StringBuffer()
addResult.waitForProcessOutput(addOutputStream, System.err)
}
return
}
if (it.contains("src")) {
def pwd = getPwd(it);
println "untracked pwd is :" + pwd
commitAddMsg += getName(pwd) + " "
if (!debug) {
def add = "git add " + pwd
def addResult = add.execute()
def addOutputStream = new StringBuffer()
addResult.waitForProcessOutput(addOutputStream, System.err)
}
}
}
if (commitDelMsg != "删除了") {
commitMsg += commitDelMsg + " "
}
if (commitModMsg != "修改了") {
commitMsg += commitModMsg + " "
}
if (commitAddMsg != "添加了") {
commitMsg += commitAddMsg + " "
}
println "######################commitMsg##########################"
println "$commitMsg"
println "######################commitMsg##########################"
println "*****************execute $cmdStatus end*******************"
if (!debug) {
def commit = "git commit -m " + commitMsg
def commitResult = commit.execute()
def commitOutputStream = new StringBuffer();
commitResult.waitForProcessOutput(commitOutputStream, System.err)
def push = "git push"
def putResult = push.execute()
def pushOutputStream = new StringBuffer()
putResult.waitForProcessOutput(pushOutputStream, System.err)
}
}