We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b27fdf commit 2dc20eeCopy full SHA for 2dc20ee
cli/src/common.ts
@@ -537,6 +537,9 @@ export async function checkJDKMajorVersion(): Promise<number> {
537
}
538
539
export function parseApkNameFromFlavor(flavor: string): string {
540
- const convertedName = flavor.replace(/([A-Z])/g, '$1').toLowerCase();
+ let convertedName = flavor.replace(/([A-Z])/g, '-$1').toLowerCase();
541
+
542
+ if (convertedName.startsWith('-')) convertedName = convertedName.replace('-', '');
543
544
return `app-${convertedName ? `${convertedName}-` : ''}debug.apk`;
545
0 commit comments