Remove the 'v' prefix on nightly version names.

This commit is contained in:
Ehren Kret
2022-02-09 10:07:01 -05:00
committed by GitHub
parent 80a2e1e3cc
commit b556967240
+3
View File
@@ -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 {