Skip to content

Commit 3f6ddf2

Browse files
p3drosolaHazAT
authored andcommitted
fix: Allow numbers in applicatication name
Fixes a case where sentry silently fails if the application name contains a number.
1 parent a921a7f commit 3f6ddf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ gradle.projectsEvaluated {
6161
// .join('\n')
6262

6363
def currentVariant = "";
64-
def pattern = Pattern.compile("bundle([A-Z][A-Za-z]+)JsAndAssets")
64+
def pattern = Pattern.compile("bundle([A-Z][A-Za-z0-9]+)JsAndAssets")
6565
Matcher matcher = pattern.matcher(bundleTask.name)
6666
if (matcher.find()) {
6767
def match = matcher.group(1);

0 commit comments

Comments
 (0)