Change version code generation.

This commit is contained in:
Amine Bou 2018-03-31 18:25:14 +02:00
parent 68892fb41b
commit 4f8556fca8

View File

@ -23,14 +23,14 @@ def gitVersion() {
def versionCodeFromGit() {
def dayInYear = ext.configuration.buildDate.format("D").padLeft(2, '0')
def versionCode = gitVersion() + (ext.configuration.buildDate.format("yyMM") + ext.todaysBuilds + dayInYear).toInteger()
def versionCode = gitVersion() + (ext.configuration.buildDate.format("yyMM") + dayInYear + ext.todaysBuilds).toInteger()
println "version code " + versionCode
return versionCode.toInteger()
}
def versionNameFromGit() {
def dayInYear = ext.configuration.buildDate.format("D").padLeft(2, '0')
def versionName = gitVersion() + ext.configuration.buildDate.format('yyMM') + ext.todaysBuilds + dayInYear
def versionName = gitVersion() + ext.configuration.buildDate.format('yyMM') + dayInYear + ext.todaysBuilds
println "version name " + versionName
return versionName
}