(flavor: string)
| 537 | } |
| 538 | |
| 539 | export function parseApkNameFromFlavor(flavor: string): string { |
| 540 | 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 | } |
no outgoing calls
no test coverage detected