diff --git a/app/build.gradle b/app/build.gradle index 8625411b1..85740c450 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -344,6 +344,9 @@ android { output.versionCodeOverride = canonicalVersionCode * postFixSize + 5 def tag = getCurrentGitTag() if (tag != null && tag.length() > 0) { + if (tag.startsWith("v")) { + tag = tag.substring(1) + } output.versionNameOverride = tag } } else {