Skip to content

Instantly share code, notes, and snippets.

@SelvinPL
Last active August 2, 2016 17:48
Show Gist options
  • Save SelvinPL/47792b03b83ada3557f4 to your computer and use it in GitHub Desktop.
Save SelvinPL/47792b03b83ada3557f4 to your computer and use it in GitHub Desktop.
def getVersionCode(int default_) {
return project.hasProperty('versionCode') ? versionCode.toInteger() : default_
}
def getVersionName(String default_) {
return project.hasProperty('versionName') ? versionName : default_
}
versionCode getVersionCode(3)
versionName getVersionName("1.0")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment