Run the dex deobfuscation. @param i the dex class index @return true if the dex class is deobfuscated successfully.
(int i)
| 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 |
no test coverage detected