Skip to content

Instantly share code, notes, and snippets.

@sergchil
Last active August 20, 2018 07:33
Show Gist options
  • Save sergchil/2786f8fa17d7821f8451d873c926f242 to your computer and use it in GitHub Desktop.
Save sergchil/2786f8fa17d7821f8451d873c926f242 to your computer and use it in GitHub Desktop.
Change Android Studio'd genereted app-release to something like "devRelease-1.0.0.109.apk"
android.applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "${variant.name}-${variant.versionName}.${variant.versionCode}.apk"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment