Fixed APK/DEX Importing
This commit is contained in:
parent
b40c763db9
commit
540b48f3ee
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue