use of jadx.api.plugins.options.impl.JadxOptionDescription in project jadx by skylot.
the class DexInputOptions method buildOptionsDescriptions.
public List<OptionDescription> buildOptionsDescriptions() {
List<OptionDescription> list = new ArrayList<>(1);
list.add(new JadxOptionDescription(VERIFY_CHECKSUM_OPT, "Verify dex file checksum before load", "yes", Arrays.asList("yes", "no")));
return list;
}
Aggregations