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

Function rebuildAPK

src/interface.ts:144–155  ·  view source on GitHub ↗
(apktoolYmlPath: string)

Source from the content-addressed store, hash-verified

142 * @param apktoolYmlPath path of the `apktool.yml` file.
143 */
144 export async function rebuildAPK(apktoolYmlPath: string): Promise<void> {
145 const quickPickItems = await showArgsQuickPick(
146 quickPickUtil.getQuickPickItems("rebuildQuickPickItems"),
147 "Additional Apktool arguments",
148 );
149 const args = quickPickItems
150 ? quickPickItems.map<string>((item) => item.label)
151 : undefined;
152 if (args) {
153 await apktool.rebuildAPK(apktoolYmlPath, args);
154 }
155 }
156}

Callers

nothing calls this directly

Calls 1

showArgsQuickPickFunction · 0.85

Tested by

no test coverage detected