mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
Comment out apk-renaming stuff. It's confusing AS.
This commit is contained in:
parent
dffaf2335e
commit
26d0aedb8f
1 changed files with 24 additions and 24 deletions
|
@ -21,9 +21,9 @@ android {
|
|||
}
|
||||
|
||||
// Rename all output artifacts to include version information
|
||||
applicationVariants.all { variant ->
|
||||
renameArtifact(variant)
|
||||
}
|
||||
// applicationVariants.all { variant ->
|
||||
// renameArtifact(variant)
|
||||
// }
|
||||
|
||||
// flavorDimensions "variant", "abi"
|
||||
// productFlavors {
|
||||
|
@ -185,25 +185,25 @@ tasks.whenTaskAdded { theTask ->
|
|||
}
|
||||
}
|
||||
|
||||
def getVersionName() {
|
||||
try {
|
||||
def stdout = new ByteArrayOutputStream()
|
||||
exec {
|
||||
commandLine 'git', 'describe', '--dirty'
|
||||
standardOutput = stdout
|
||||
}
|
||||
return stdout.toString().trim()
|
||||
}
|
||||
catch (ignored) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
// def getVersionName() {
|
||||
// try {
|
||||
// def stdout = new ByteArrayOutputStream()
|
||||
// exec {
|
||||
// commandLine 'git', 'describe', '--dirty'
|
||||
// standardOutput = stdout
|
||||
// }
|
||||
// return stdout.toString().trim()
|
||||
// }
|
||||
// catch (ignored) {
|
||||
// return null;
|
||||
// }
|
||||
// }
|
||||
|
||||
def renameArtifact(variant) {
|
||||
variant.outputs.each { output ->
|
||||
def name = String.format( "XWords4-%s-%s.apk", variant.name,
|
||||
getVersionName() )
|
||||
output.outputFile = new File( (String)output.outputFile.parent,
|
||||
(String)name )
|
||||
}
|
||||
}
|
||||
// def renameArtifact(variant) {
|
||||
// variant.outputs.each { output ->
|
||||
// def name = String.format( "XWords4-%s-%s.apk", variant.name,
|
||||
// getVersionName() )
|
||||
// output.outputFile = new File( (String)output.outputFile.parent,
|
||||
// (String)name )
|
||||
// }
|
||||
// }
|
||||
|
|
Loading…
Reference in a new issue