Last active
August 20, 2018 07:33
-
-
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"
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
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