Skip to content

Commit

Permalink
Merge branch 'main' into latest-6
Browse files Browse the repository at this point in the history
  • Loading branch information
markemer authored Apr 15, 2024
2 parents de7f36b + 3c411fd commit 00468c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,6 @@ export async function checkJDKMajorVersion(): Promise<number> {
}

export function parseApkNameFromFlavor(flavor: string): string {
const convertedName = flavor.replace(/([A-Z])/g, '-$1').toLowerCase();
const convertedName = flavor.replace(/([A-Z])/g, '$1').toLowerCase();
return `app-${convertedName ? `${convertedName}-` : ''}debug.apk`;
}

0 comments on commit 00468c5

Please sign in to comment.