Skip to content

Instantly share code, notes, and snippets.

@robotsquidward
Last active February 5, 2020 17:56
Show Gist options
  • Select an option

  • Save robotsquidward/72efdd9970d25da46d81007ce33a553b to your computer and use it in GitHub Desktop.

Select an option

Save robotsquidward/72efdd9970d25da46d81007ce33a553b to your computer and use it in GitHub Desktop.
/**
* Use the number of seconds/10 since Jan 2020 as the versionCode.
* This lets us upload a new build at most every 10 seconds for the
* next 680 years. https://stackoverflow.com/a/38643838/1799007
*/
def generatedVersionCode = (int)(((new Date().getTime()/1000) - 1580319970) / 10)
**/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment