Commit e3696af8 authored by skylot's avatar skylot

Merge pull request #34 from YASME-Tim/zip-file

Added support for files ending in .zip.
parents ffc64204 c4fe9150
......@@ -40,7 +40,7 @@ public class InputFile {
if (fileName.endsWith(".class")) {
return loadFromClassFile(file);
}
if (fileName.endsWith(".apk")) {
if (fileName.endsWith(".apk") || fileName.endsWith(".zip")) {
Dex dex = loadFromZip(file);
if (dex == null) {
throw new IOException("File 'classes.dex' not found in file: " + file);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment