()
| 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 | } |
nothing calls this directly
no test coverage detected