Versionning changes.

This commit is contained in:
Amine Bou 2018-04-15 21:32:34 +02:00
parent a929e419d9
commit c17980a032

View File

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