This should fix it.

This commit is contained in:
Amine Bou 2017-12-05 22:57:03 +01:00
parent 44c79892a0
commit 2def2f2e2c

View File

@ -20,7 +20,7 @@ def gitVersion() {
}
def versionCodeFromGit() {
def versionCode = gitVersion() + (ext.configuration.buildDate.format("yyMMdd")).toInteger()
def versionCode = gitVersion() + (ext.configuration.buildDate.format("yyMMD")).toInteger()
println "version code " + versionCode
return versionCode.toInteger()
}