Skip to content

Instantly share code, notes, and snippets.

@YuanLiou
Created August 7, 2018 03:24
Show Gist options
  • Save YuanLiou/a03127cd81794a330f56f5413a591edc to your computer and use it in GitHub Desktop.
Save YuanLiou/a03127cd81794a330f56f5413a591edc to your computer and use it in GitHub Desktop.
Gradle Version Code Script
if (beta > 0 ) {
version = major * 1000000 + minor * 10000 + (bugfix -1) * 100 + beta
} else {
version = major * 1000000 + minor * 10000 + bugfix * 100;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment