From 8fb2f2dc1d3b9b1e9fd13b39485985d2886d52ae Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Mon, 14 Aug 2023 04:02:24 +0200 Subject: [PATCH] fix: decode in correct order --- src/main/kotlin/app/revanced/patcher/Patcher.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/patcher/Patcher.kt b/src/main/kotlin/app/revanced/patcher/Patcher.kt index a41941f..e726584 100644 --- a/src/main/kotlin/app/revanced/patcher/Patcher.kt +++ b/src/main/kotlin/app/revanced/patcher/Patcher.kt @@ -208,8 +208,8 @@ class Patcher(private val options: PatcherOptions) { val outDir = options.recreateResourceCacheDirectory() - resourcesDecoder.decodeManifest(outDir) resourcesDecoder.decodeResources(outDir) + resourcesDecoder.decodeManifest(outDir) apkDecoder.recordUncompressedFiles(resourcesDecoder.resFileMapping)