Method
Decompile
(
@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
Tested by
no test coverage detected