@@ -8,13 +8,13 @@ apply plugin: 'com.android.library'
8
8
static def calcSha256 (file ) {
9
9
def md = MessageDigest . getInstance(" SHA-256" )
10
10
file. eachByte 4096 , { bytes , size ->
11
- md. update(bytes, 0 , size);
11
+ md. update(bytes, 0 , size)
12
12
}
13
13
return md. digest(). encodeHex()
14
14
}
15
15
16
16
// Values set here will be overriden by AppVeyor, feel free to modify during development.
17
- def buildVersionName = ' v0.5.1.4 '
17
+ def buildVersionName = ' v0.5.2.0 '
18
18
def buildVersionCode = 233
19
19
20
20
if (System . env. APPVEYOR_BUILD_VERSION != null ) {
34
34
module_name = " EdXposed"
35
35
jar_dest_dir = " ${ projectDir} /template_override/system/framework/"
36
36
is_windows = OperatingSystem . current(). isWindows()
37
- backends = [" YAHFA" , " SandHook" ]
38
- yahfa_module_id = " riru_edxposed"
39
- sandhook_module_id = yahfa_module_id + " _sandhook"
40
- yahfa_authors = " solohsu, MlgmXyysd & rk700"
41
- sandhook_authors = " solohsu, MlgmXyysd & ganyao114"
37
+ module_id = " riru_edxposed"
38
+ authors = " solohsu, MlgmXyysd"
42
39
43
40
riruModuleId = " edxp"
44
41
@@ -118,140 +115,126 @@ afterEvaluate {
118
115
def variantCapped = variant. name. capitalize()
119
116
def variantLowered = variant. name. toLowerCase()
120
117
121
- backends. each { backend ->
122
- def backendLowered = backend. toLowerCase()
123
- def backendCapped = backendLowered. capitalize()
124
- def authorList = property(" ${ backendLowered} " + " _authors" )
125
- def magiskModuleId = property(" ${ backendLowered} " + " _module_id" )
118
+ delete file(zipPathMagiskReleasePath)
126
119
127
- delete file(zipPathMagiskReleasePath)
120
+ def prepareJarsTask = task(" prepareJars${ variantCapped} " ) {
121
+ dependsOn cleanTemplate
122
+ dependsOn tasks. getByPath(" :dexmaker:copyDex${ variantCapped} " )
123
+ dependsOn tasks. getByPath(" :dalvikdx:copyDex${ variantCapped} " )
124
+ dependsOn tasks. getByPath(" :edxp-service:copyDex${ variantCapped} " )
125
+ dependsOn tasks. getByPath(" :edxp-yahfa:copyDex${ variantCapped} " )
126
+ dependsOn tasks. getByPath(" :edxp-sandhook:copyDex${ variantCapped} " )
127
+ }
128
128
129
- def prepareJarsTask = task(" prepareJars${ backendCapped}${ variantCapped} " ) {
130
- dependsOn cleanTemplate
131
- dependsOn tasks. getByPath(" :dexmaker:copyDex${ variantCapped} " )
132
- dependsOn tasks. getByPath(" :dalvikdx:copyDex${ variantCapped} " )
133
- dependsOn tasks. getByPath(" :edxp-service:copyDex${ variantCapped} " )
134
- dependsOn tasks. getByPath(" :edxp-${ backendLowered} :copyDex${ variantCapped} " )
129
+ def prepareMagiskFilesTask = task(" prepareMagiskFiles${ variantCapped} " , type : Delete ) {
130
+ dependsOn prepareJarsTask, " assemble${ variantCapped} "
131
+ doFirst {
132
+ copy {
133
+ from " ${ projectDir} /tpl/edconfig.tpl"
134
+ into templateFrameworkPath
135
+ rename " edconfig.tpl" , " edconfig.jar"
136
+ expand(version : " $version " , apiCode : " $apiCode " )
137
+ }
138
+ copy {
139
+ from " ${ projectDir} /tpl/module.prop.tpl"
140
+ into templateRootPath
141
+ rename " module.prop.tpl" , " module.prop"
142
+ expand(moduleId : module_id,
143
+ versionName : " $version " ,
144
+ versionCode : " $versionCode " , authorList : authors,
145
+ apiCode : " $apiCode " , minApi : " $moduleMinRiruApiVersion " )
146
+ filter(FixCrLfFilter . class, eol : FixCrLfFilter.CrLf . newInstance(" lf" ))
147
+ }
135
148
}
136
-
137
- def prepareMagiskFilesTask = task(" prepareMagiskFiles${ backendCapped}${ variantCapped} " , type : Delete ) {
138
- dependsOn prepareJarsTask, " assemble${ variantCapped} "
139
- doFirst {
140
- copy {
141
- from " ${ projectDir} /tpl/edconfig.tpl"
142
- into templateFrameworkPath
143
- rename " edconfig.tpl" , " edconfig.jar"
144
- expand(version : " $version " , backend : " $backend " , apiCode : " $apiCode " )
145
- }
146
- copy {
147
- from " ${ projectDir} /tpl/module.prop.tpl"
148
- into templateRootPath
149
- rename " module.prop.tpl" , " module.prop"
150
- expand(moduleId : " $magiskModuleId " , backend : " $backendCapped " ,
151
- versionName : " $version " + " ($backend )" ,
152
- versionCode : " $versionCode " , authorList : " $authorList " ,
153
- apiCode : " $apiCode " , minApi : " $moduleMinRiruApiVersion " )
154
- filter(FixCrLfFilter . class, eol : FixCrLfFilter.CrLf . newInstance(" lf" ))
155
- }
149
+ def libPathRelease = " ${ buildDir} /intermediates/cmake/${ variantLowered} /obj"
150
+ def exclude_list = [" riru.sh" ]
151
+ doLast {
152
+ copy {
153
+ from " ${ projectDir} /template_override"
154
+ into zipPathMagiskReleasePath
155
+ exclude exclude_list
156
156
}
157
- def libPathRelease = " ${ buildDir} /intermediates/cmake/${ variantLowered} /obj"
158
- def exclude_list = [" riru.sh" ]
159
- doLast {
160
- copy {
161
- from " ${ projectDir} /template_override"
162
- into zipPathMagiskReleasePath
163
- exclude exclude_list
164
- }
165
- copy {
166
- from " ${ projectDir} /template_override"
167
- into zipPathMagiskReleasePath
168
- include ' util_functions.sh'
169
- filter { line ->
170
- line. replaceAll(' %%%RIRU_MODULE_ID%%%' , riruModuleId)
171
- .replaceAll(' %%%RIRU_MIN_API_VERSION%%%' , moduleMinRiruApiVersion. toString())
172
- .replaceAll(' %%%RIRU_MIN_VERSION_NAME%%%' , moduleMinRiruVersionName)
173
- }
174
- filter(FixCrLfFilter . class,
175
- eol : FixCrLfFilter.CrLf . newInstance(" lf" ))
176
- }
177
- copy {
178
- include " libriru_edxp.so"
179
- from " $libPathRelease /armeabi-v7a"
180
- into " $zipPathMagiskReleasePath /system/lib"
181
- }
182
- copy {
183
- include " libriru_edxp.so"
184
- from " $libPathRelease /arm64-v8a"
185
- into " $zipPathMagiskReleasePath /system/lib64"
186
- }
187
- copy {
188
- include " libriru_edxp.so"
189
- from " $libPathRelease /x86"
190
- into " $zipPathMagiskReleasePath /system_x86/lib"
191
- }
192
- copy {
193
- include " libriru_edxp.so"
194
- from " $libPathRelease /x86_64"
195
- into " $zipPathMagiskReleasePath /system_x86/lib64"
196
- }
197
- // generate sha1sum
198
- fileTree(zipPathMagiskReleasePath). matching {
199
- exclude " README.md" , " META-INF"
200
- }. visit { f ->
201
- if (f. directory) return
202
- file(f. file. path + " .s" ). text = calcSha256(f. file)
157
+ copy {
158
+ from " ${ projectDir} /template_override"
159
+ into zipPathMagiskReleasePath
160
+ include ' util_functions.sh'
161
+ filter { line ->
162
+ line. replaceAll(' %%%RIRU_MODULE_ID%%%' , riruModuleId)
163
+ .replaceAll(' %%%RIRU_MIN_API_VERSION%%%' , moduleMinRiruApiVersion. toString())
164
+ .replaceAll(' %%%RIRU_MIN_VERSION_NAME%%%' , moduleMinRiruVersionName)
203
165
}
166
+ filter(FixCrLfFilter . class,
167
+ eol : FixCrLfFilter.CrLf . newInstance(" lf" ))
204
168
}
205
- }
206
-
207
- def zipTask = task(" zip${ backendCapped}${ variantCapped} " , type : Zip ) {
208
- dependsOn prepareMagiskFilesTask
209
- archiveName " ${ module_name} -${ backend} -${ project.version} -${ variantLowered} .zip"
210
- destinationDir file(" $projectDir /release" )
211
- from " $zipPathMagiskReleasePath "
212
- }
213
-
214
- task(" push${ backendCapped}${ variantCapped} " , type : Exec ) {
215
- dependsOn zipTask
216
- workingDir " ${ projectDir} /release"
217
- def commands = [android. adbExecutable, " push" ,
218
- " ${ module_name} -${ backend} -${ project.version} -${ variantLowered} .zip" ,
219
- " /data/local/tmp/" ]
220
- if (is_windows) {
221
- commandLine ' cmd' , ' /c' , commands. join(" " )
222
- } else {
223
- commandLine commands
169
+ copy {
170
+ include " libriru_edxp.so"
171
+ from " $libPathRelease /armeabi-v7a"
172
+ into " $zipPathMagiskReleasePath /system/lib"
224
173
}
225
- }
226
- task(" flash${ backendCapped}${ variantCapped} " , type : Exec ) {
227
- dependsOn tasks. getByPath(" push${ backendCapped}${ variantCapped} " )
228
- workingDir " ${ projectDir} /release"
229
- def commands = [android. adbExecutable, " shell" , " su" , " -c" ,
230
- " magisk --install-module /data/local/tmp/${ module_name} -${ backend} -${ project.version} -${ variantLowered} .zip" ]
231
- if (is_windows) {
232
- commandLine ' cmd' , ' /c' , commands. join(" " )
233
- } else {
234
- commandLine commands
174
+ copy {
175
+ include " libriru_edxp.so"
176
+ from " $libPathRelease /arm64-v8a"
177
+ into " $zipPathMagiskReleasePath /system/lib64"
235
178
}
236
- }
237
- task(" flashAndReboot${ backendCapped}${ variantCapped} " , type : Exec ) {
238
- dependsOn tasks. getByPath(" flash${ backendCapped}${ variantCapped} " )
239
- workingDir " ${ projectDir} /release"
240
- def commands = [android. adbExecutable, " shell" , " reboot" ]
241
- if (is_windows) {
242
- commandLine ' cmd' , ' /c' , commands. join(" " )
243
- } else {
244
- commandLine commands
179
+ copy {
180
+ include " libriru_edxp.so"
181
+ from " $libPathRelease /x86"
182
+ into " $zipPathMagiskReleasePath /system_x86/lib"
183
+ }
184
+ copy {
185
+ include " libriru_edxp.so"
186
+ from " $libPathRelease /x86_64"
187
+ into " $zipPathMagiskReleasePath /system_x86/lib64"
188
+ }
189
+ // generate sha1sum
190
+ fileTree(zipPathMagiskReleasePath). matching {
191
+ exclude " README.md" , " META-INF"
192
+ }. visit { f ->
193
+ if (f. directory) return
194
+ file(f. file. path + " .s" ). text = calcSha256(f. file)
245
195
}
246
196
}
247
197
}
248
198
249
- // backward compatible
250
- task(" zip${ variantCapped} " ) {
251
- dependsOn " zipYahfa${ variantCapped} "
199
+ def zipTask = task(" zip${ variantCapped} " , type : Zip ) {
200
+ dependsOn prepareMagiskFilesTask
201
+ archiveName " ${ module_name} -${ project.version} -${ variantLowered} .zip"
202
+ destinationDir file(" $projectDir /release" )
203
+ from " $zipPathMagiskReleasePath "
252
204
}
253
- task(" push${ variantCapped} " ) {
254
- dependsOn " pushYahfa${ variantCapped} "
205
+
206
+ task(" push${ variantCapped} " , type : Exec ) {
207
+ dependsOn zipTask
208
+ workingDir " ${ projectDir} /release"
209
+ def commands = [android. adbExecutable, " push" ,
210
+ " ${ module_name} -${ project.version} -${ variantLowered} .zip" ,
211
+ " /data/local/tmp/" ]
212
+ if (is_windows) {
213
+ commandLine ' cmd' , ' /c' , commands. join(" " )
214
+ } else {
215
+ commandLine commands
216
+ }
217
+ }
218
+ task(" flash${ variantCapped} " , type : Exec ) {
219
+ dependsOn tasks. getByPath(" push${ variantCapped} " )
220
+ workingDir " ${ projectDir} /release"
221
+ def commands = [android. adbExecutable, " shell" , " su" , " -c" ,
222
+ " magisk --install-module /data/local/tmp/${ module_name} -${ project.version} -${ variantLowered} .zip" ]
223
+ if (is_windows) {
224
+ commandLine ' cmd' , ' /c' , commands. join(" " )
225
+ } else {
226
+ commandLine commands
227
+ }
228
+ }
229
+ task(" flashAndReboot${ variantCapped} " , type : Exec ) {
230
+ dependsOn tasks. getByPath(" flash${ variantCapped} " )
231
+ workingDir " ${ projectDir} /release"
232
+ def commands = [android. adbExecutable, " shell" , " reboot" ]
233
+ if (is_windows) {
234
+ commandLine ' cmd' , ' /c' , commands. join(" " )
235
+ } else {
236
+ commandLine commands
237
+ }
255
238
}
256
239
}
257
240
0 commit comments