Fixed APK/DEX Importing

This commit is contained in:
Konloch 2021-07-11 02:31:34 -07:00
parent b40c763db9
commit 540b48f3ee
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ public class APKResourceImporter implements Importer
Enjarify.apk2Jar(tempCopy, output);
//create a new resource importer and copy the contents from it
container.clear().copy(new ResourceContainerImporter(
container.copy(new ResourceContainerImporter(
new ResourceContainer(output)).importAsZip().getContainer());
BytecodeViewer.updateBusyStatus(false);

View File

@ -38,7 +38,7 @@ public class DEXResourceImporter implements Importer
Enjarify.apk2Jar(tempCopy, output);
//create a new resource importer and copy the contents from it
container.clear().copy(new ResourceContainerImporter(
container.copy(new ResourceContainerImporter(
new ResourceContainer(output)).importAsZip().getContainer());
BytecodeViewer.updateBusyStatus(false);