MCPcopy Index your code
hub / github.com/APKLab/APKLab / emptyFrameworkDir

Function emptyFrameworkDir

src/tools/apktool.ts:155–167  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

153 * Empty the **ApkTool** resource framework dir.
154 */
155 export async function emptyFrameworkDir(): Promise<void> {
156 const extensionConfig =
157 vscode.workspace.getConfiguration(extensionConfigName);
158 const apktoolPath = extensionConfig.get("apktoolPath");
159 const report = "Cleaning up ApkTool Framework dir";
160 const args = ["-jar", String(apktoolPath), "clean-frameworks"];
161 await executeProcess({
162 name: "Cleanup Apktool framework dir",
163 report: report,
164 command: getJavaPath(),
165 args: args,
166 });
167 }
168}

Callers

nothing calls this directly

Calls 2

executeProcessFunction · 0.90
getJavaPathFunction · 0.90

Tested by

no test coverage detected