(String[] args)
| 8 | |
| 9 | public class ToolsManager { |
| 10 | public static void runDx(String[] args) { |
| 11 | com.android.dx.command.Main.main(args); |
| 12 | } |
| 13 | |
| 14 | public static void runBaksmali(String dexFilePath) { |
| 15 | org.jf.baksmali.Main.main(new String[]{"d", dexFilePath, "-o", new File(dexFilePath).getAbsoluteFile().getParentFile().getAbsolutePath() + Main.SEPARATOR + OUT_SMALI_FOLDER}); |
no test coverage detected