fix: return resourceFile to caller

This commit is contained in:
Lucaskyy
2022-06-21 20:43:47 +02:00
parent 28d5468b07
commit 1f75777cf9
2 changed files with 7 additions and 5 deletions

View File

@@ -1,6 +1,7 @@
package app.revanced.patcher
import app.revanced.patcher.util.dex.DexFile
import brut.directory.ExtFile
/**
* The result of a patcher.
@@ -9,5 +10,6 @@ import app.revanced.patcher.util.dex.DexFile
*/
data class PatcherResult(
val dexFiles: List<DexFile>,
val doNotCompress: List<String>? = null
val doNotCompress: List<String>? = null,
val resourceFile: ExtFile?
)