Created
August 7, 2018 03:24
-
-
Save YuanLiou/a03127cd81794a330f56f5413a591edc to your computer and use it in GitHub Desktop.
Gradle Version Code Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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