MCPcopy Create free account
hub / github.com/KuhakuPixel/AceTheGame / Decompile

Method Decompile

Modder/modder/src/main/java/modder/App.java:102–112  ·  view source on GitHub ↗
(

			@Parameters(paramLabel = "ApkFilePath", description = "Path to apk file or a directory containing apks")

			String apkPathStr

	)

Source from the content-addressed store, hash-verified

100 *
101 */
102 @Command(name = "decompile", description = "Decompile an apk")
103 void Decompile(
104
105 @Parameters(paramLabel = "ApkFilePath", description = "Path to apk file or a directory containing apks")
106
107 String apkPathStr
108
109 ) {
110 File apkDir = new File(apkPathStr);
111 ApkMod.Decompile(apkPathStr, apkDir.toString() + ApkMod.DECOMPILED_DIR_EXT);
112 }
113
114 @Command(name = "recompile", description = "recompile apks")
115 void Recompile(

Callers

nothing calls this directly

Calls 2

DecompileMethod · 0.95
toStringMethod · 0.45

Tested by

no test coverage detected