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 {
loadFromZip(".dex");
return;
}
if (fileName.endsWith(".jar")) {
// check if jar contains '.dex' files
if (fileName.endsWith(".jar") || fileName.endsWith(".aar")) {
// check if jar/aar contains '.dex' files
if (loadFromZip(".dex")) {
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