MCPcopy Create free account
hub / github.com/cinit/TMoe / prepareFor

Method prepareFor

app/src/main/java/cc/ioctl/tmoe/util/dex/DexKit.java:45–51  ·  view source on GitHub ↗

Run the dex deobfuscation. @param i the dex class index @return true if the dex class is deobfuscated successfully.

(int i)

Source from the content-addressed store, hash-verified

43 * @return true if the dex class is deobfuscated successfully.
44 */
45 public static boolean prepareFor(int i) {
46 if (i / 10000 == 0) {
47 return doFindClass(i) != null;
48 } else {
49 return doFindMethod(i) != null;
50 }
51 }
52
53 /**
54 * Test whether we should run the dex deobfuscation. Note that if a dex class is tried to deobfuscate before, but

Callers 1

makePreparationsMethod · 0.95

Calls 2

doFindClassMethod · 0.95
doFindMethodMethod · 0.95

Tested by

no test coverage detected