Skip to content

Instantly share code, notes, and snippets.

@tunjos
Created July 13, 2016 20:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tunjos/e2302ec8dc5843195daa24491f1cba5e to your computer and use it in GitHub Desktop.
Save tunjos/e2302ec8dc5843195daa24491f1cba5e to your computer and use it in GitHub Desktop.
Producing better named Android APKs with Gradle
apply from: "../artifacts.gradle"
android.applicationVariants.all { variant ->
def appName
//Check if an applicationName property is supplied; if not use the name of the parent project.
if (project.hasProperty("applicationName")) {
appName = applicationName
} else {
appName = parent.name
}
variant.outputs.each { output ->
def newApkName
//If there's no ZipAlign task it means that our artifact will be unaligned and we need to mark it as such.
if (output.zipAlign) {
newApkName = "${appName}-${output.baseName}-${variant.versionName}.apk"
} else {
newApkName = "${appName}-${output.baseName}-${variant.versionName}-unaligned.apk"
}
output.outputFile = new File(output.outputFile.parent, newApkName)
}
}
#Use line below to use "FooBar" as application name when generating APK files.
applicationName=FooBar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment