Tabnine Logo
JadxArgs.setOutDirSrc
Code IndexAdd Tabnine to your IDE (free)

How to use
setOutDirSrc
method
in
jadx.api.JadxArgs

Best Java code snippets using jadx.api.JadxArgs.setOutDirSrc (Showing top 4 results out of 315)

origin: skylot/jadx

public void setRootDir(File rootDir) {
  setOutDir(rootDir);
  setOutDirSrc(new File(rootDir, DEFAULT_SRC_DIR));
  setOutDirRes(new File(rootDir, DEFAULT_RES_DIR));
}
origin: skylot/jadx

private static void setFromOut(JadxArgs args) {
  if (args.getOutDirSrc() == null) {
    args.setOutDirSrc(new File(args.getOutDir(), JadxArgs.DEFAULT_SRC_DIR));
  }
  if (args.getOutDirRes() == null) {
    args.setOutDirRes(new File(args.getOutDir(), JadxArgs.DEFAULT_RES_DIR));
  }
}
origin: skylot/jadx

private void setOutDirs(String outDir, String srcDir, String resDir) {
  args = makeArgs();
  args.setOutDir(toFile(outDir));
  args.setOutDirSrc(toFile(srcDir));
  args.setOutDirRes(toFile(resDir));
  LOG.debug("Set dirs: out={}, src={}, res={}", outDir, srcDir, resDir);
}
origin: skylot/jadx

public JadxArgs toJadxArgs() {
  JadxArgs args = new JadxArgs();
  args.setInputFiles(files.stream().map(FileUtils::toFile).collect(Collectors.toList()));
  args.setOutDir(FileUtils.toFile(outDir));
  args.setOutDirSrc(FileUtils.toFile(outDirSrc));
  args.setOutDirRes(FileUtils.toFile(outDirRes));
  args.setThreadsCount(threadsCount);
  args.setSkipSources(skipSources);
  args.setSkipResources(skipResources);
  args.setFallbackMode(fallbackMode);
  args.setShowInconsistentCode(showInconsistentCode);
  args.setCfgOutput(cfgOutput);
  args.setRawCFGOutput(rawCfgOutput);
  args.setReplaceConsts(replaceConsts);
  args.setDeobfuscationOn(deobfuscationOn);
  args.setDeobfuscationForceSave(deobfuscationForceSave);
  args.setDeobfuscationMinLength(deobfuscationMinLength);
  args.setDeobfuscationMaxLength(deobfuscationMaxLength);
  args.setUseSourceNameAsClassAlias(deobfuscationUseSourceNameAsAlias);
  args.setEscapeUnicode(escapeUnicode);
  args.setExportAsGradleProject(exportAsGradleProject);
  args.setUseImports(useImports);
  return args;
}
jadx.apiJadxArgssetOutDirSrc

Popular methods of JadxArgs

  • <init>
  • setInputFiles
  • setOutDir
  • setOutDirRes
  • setSkipResources
  • getInputFiles
  • getOutDir
  • getOutDirRes
  • getOutDirSrc
  • setCfgOutput
  • setDeobfuscationForceSave
  • setDeobfuscationMaxLength
  • setDeobfuscationForceSave,
  • setDeobfuscationMaxLength,
  • setDeobfuscationMinLength,
  • setDeobfuscationOn,
  • setExportAsGradleProject,
  • setFallbackMode,
  • setRawCFGOutput,
  • setReplaceConsts,
  • setShowInconsistentCode

Popular in Java

  • Running tasks concurrently on multiple threads
  • setRequestProperty (URLConnection)
  • onCreateOptionsMenu (Activity)
  • runOnUiThread (Activity)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • TreeSet (java.util)
    TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • Cipher (javax.crypto)
    This class provides access to implementations of cryptographic ciphers for encryption and decryption
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now