Skip to content

Instantly share code, notes, and snippets.

@passsy
Last active November 14, 2022 15:43
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save passsy/5ea60bce2ed395a9593ef27d8c186ad2 to your computer and use it in GitHub Desktop.
Save passsy/5ea60bce2ed395a9593ef27d8c186ad2 to your computer and use it in GitHub Desktop.
lazy jake wharton versioning
def versionMajor = 3
def versionMinor = 0
def versionPatch = 0
def versionBuild = 0 // bump for dogfood builds, public betas, etc.
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