Compare commits

...

3 Commits

Author SHA1 Message Date
oSumAtrIX
d97e792d81 Apply suggestions from code review 2025-05-28 21:34:56 +02:00
Jeff Jankowski
2a3408599b Wrap dex file stream with use block 2025-05-27 13:12:51 -07:00
Jeff Jankowski
38ff123296 creating dex file stream on-demand instead of passing it around 2025-05-14 20:24:58 -07:00

View File

@@ -54,6 +54,7 @@ object ApkUtils {
ZFile.openReadWrite(apkFile, zFileOptions).use { targetApkZFile ->
dexFiles.forEach { dexFile ->
targetApkZFile.add(dexFile.name, dexFile.stream)
dexFile.stream.close()
}
resources?.let { resources ->