Skip to content

Instantly share code, notes, and snippets.

@indranil32
Created January 23, 2020 12:17
Show Gist options
  • Save indranil32/894b7fb1df1a2eb3cdec9501b6f29206 to your computer and use it in GitHub Desktop.
Save indranil32/894b7fb1df1a2eb3cdec9501b6f29206 to your computer and use it in GitHub Desktop.
def versionMajor = 3
def versionMinor = 0
def versionPatch = 0
def versionBuild = 0 // get from Jenkins -PversionBuild=${env.BUILD_NUMBER}
android {
defaultConfig {
versionCode versionMajor * 10000 + versionMinor * 1000 + versionPatch * 100 + versionBuild
versionName "${versionMajor}.${versionMinor}.${versionPatch}"
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment