Skip to content

Commit 6a912c0

Browse files
author
Fatme
authored
Ignore case when creating android project RegExp
1 parent 24fd305 commit 6a912c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/android-project-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export class AndroidProjectService extends projectServiceBaseLib.PlatformProject
9494
`${projectData.projectName}${constants.APK_EXTENSION_NAME}`,
9595
`${constants.APP_FOLDER_NAME}-${buildMode}${constants.APK_EXTENSION_NAME}`
9696
],
97-
regexes: [new RegExp(`${constants.APP_FOLDER_NAME}-.*-(${Configurations.Debug}|${Configurations.Release})${constants.APK_EXTENSION_NAME}`), new RegExp(`${packageName}-.*-(${Configurations.Debug}|${Configurations.Release})${constants.APK_EXTENSION_NAME}`)]
97+
regexes: [new RegExp(`${constants.APP_FOLDER_NAME}-.*-(${Configurations.Debug}|${Configurations.Release})${constants.APK_EXTENSION_NAME}`, "i"), new RegExp(`${packageName}-.*-(${Configurations.Debug}|${Configurations.Release})${constants.APK_EXTENSION_NAME}`, "i")]
9898
};
9999
},
100100
frameworkFilesExtensions: [".jar", ".dat", ".so"],

0 commit comments

Comments
 (0)