Added option flag to make androidmanifest.xml decompiling optional.

This commit is contained in:
YASME-Tim
2014-12-22 22:11:04 +01:00
parent ddab4c269d
commit aacb83290e
6 changed files with 70 additions and 1 deletions
@@ -47,6 +47,9 @@ public final class JadxCLIArgs implements IJadxArgs {
@Parameter(names = {"-h", "--help"}, description = "print this help", help = true)
protected boolean printHelp = false;
@Parameter(names = {"-x", "--xml"}, description = "try to decode the AndroidManifest.xml, save at current dir")
protected boolean xmlTest = false;
private final List<File> input = new ArrayList<File>(1);
private File outputDir;
@@ -164,6 +167,11 @@ public final class JadxCLIArgs implements IJadxArgs {
return printHelp;
}
@Override
public boolean isXMLTest() {
return xmlTest;
}
@Override
public int getThreadsCount() {
return threadsCount;