You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOG.error("Load failed! No classes for decompile!");
leads to failure to process resource-only apks (e.g., those without java files such as architecture-dependent split apks), even when the --no-src option is given.
I'd like a way to at least enable the previous behavior, perhaps when the --no-src option is given, or perhaps offer a warning but not an error when no classes are identified. Happy to work on this if desired.
The text was updated successfully, but these errors were encountered:
offer a warning but not an error when no classes are identified
I think this is the best way to handle this: log warning and continue, may omit warning if --no-src option is given.
Also, I definitely need a test for this, or I may accidentally break that again.
From 1.3.4 (specifically 54683e3), the addition of
jadx/jadx-cli/src/main/java/jadx/cli/JadxCLI.java
Line 69 in 49137c9
In 1.3.3:
In 1.4.1:
I'd like a way to at least enable the previous behavior, perhaps when the --no-src option is given, or perhaps offer a warning but not an error when no classes are identified. Happy to work on this if desired.
The text was updated successfully, but these errors were encountered: