Closing Framework and APK after use

This commit should fix https://github.com/iBotPeaches/Apktool/issues/1160
This commit is contained in:
Marc Miltenberger
2017-05-02 08:21:09 +02:00
parent 4800bd7b44
commit 66c1b46865
8 changed files with 136 additions and 75 deletions

View File

@ -187,6 +187,11 @@ public class Main {
} catch (DirectoryException ex) {
System.err.println("Could not modify internal dex files. Please ensure you have permission.");
System.exit(1);
} finally {
try {
decoder.close();
} catch (IOException e) {
}
}
}