Comment out apk-renaming stuff. It's confusing AS.

This commit is contained in:
Eric House 2016-01-13 07:58:59 -08:00
parent dffaf2335e
commit 26d0aedb8f

View file

@ -21,9 +21,9 @@ android {
} }
// Rename all output artifacts to include version information // Rename all output artifacts to include version information
applicationVariants.all { variant -> // applicationVariants.all { variant ->
renameArtifact(variant) // renameArtifact(variant)
} // }
// flavorDimensions "variant", "abi" // flavorDimensions "variant", "abi"
// productFlavors { // productFlavors {
@ -185,25 +185,25 @@ tasks.whenTaskAdded { theTask ->
} }
} }
def getVersionName() { // def getVersionName() {
try { // try {
def stdout = new ByteArrayOutputStream() // def stdout = new ByteArrayOutputStream()
exec { // exec {
commandLine 'git', 'describe', '--dirty' // commandLine 'git', 'describe', '--dirty'
standardOutput = stdout // standardOutput = stdout
} // }
return stdout.toString().trim() // return stdout.toString().trim()
} // }
catch (ignored) { // catch (ignored) {
return null; // return null;
} // }
} // }
def renameArtifact(variant) { // def renameArtifact(variant) {
variant.outputs.each { output -> // variant.outputs.each { output ->
def name = String.format( "XWords4-%s-%s.apk", variant.name, // def name = String.format( "XWords4-%s-%s.apk", variant.name,
getVersionName() ) // getVersionName() )
output.outputFile = new File( (String)output.outputFile.parent, // output.outputFile = new File( (String)output.outputFile.parent,
(String)name ) // (String)name )
} // }
} // }