Skip to content

Instantly share code, notes, and snippets.

@MarkNjunge
Created January 30, 2020 09:54
Show Gist options
  • Select an option

  • Save MarkNjunge/821bf945adb34d712b42c21140313077 to your computer and use it in GitHub Desktop.

Select an option

Save MarkNjunge/821bf945adb34d712b42c21140313077 to your computer and use it in GitHub Desktop.
Apk with timestamp
defaultConfig {
android.applicationVariants.all { variant ->
variant.outputs.all {
def date = new Date()
def formattedDate = date.format('YYYYMMdd')
outputFileName = "appname-${variant.name}-${formattedDate}.apk"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment