Commit 43538902 authored by Jan S's avatar Jan S Committed by skylot

fix: restore support for AAR files (issue #95) (PR #464)

parent 28d348b3
...@@ -59,8 +59,8 @@ public class InputFile { ...@@ -59,8 +59,8 @@ public class InputFile {
loadFromZip(".dex"); loadFromZip(".dex");
return; return;
} }
if (fileName.endsWith(".jar")) { if (fileName.endsWith(".jar") || fileName.endsWith(".aar")) {
// check if jar contains '.dex' files // check if jar/aar contains '.dex' files
if (loadFromZip(".dex")) { if (loadFromZip(".dex")) {
return; return;
} }
......
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