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