build.gradle: do not change the output filename, our CI relies on it

This commit is contained in:
Pierre Bourdon 2017-05-20 05:54:55 +02:00
parent b47d44ab15
commit d486904e9b

View File

@ -68,14 +68,6 @@ android {
}
}
}
applicationVariants.all { variant ->
variant.outputs.each { output ->
def name = output.outputFile.name.replace(variant.buildType.name, "${variant.versionName}")
name = name.replace("app", "dolphin")
output.outputFile = new File(output.outputFile.parent, name)
}
}
}
ext {