mirror of
https://github.com/oliexdev/openScale.git
synced 2025-08-17 22:11:35 +02:00
don't include version number into the apk filename for debug build type so Travis can find it
This commit is contained in:
@@ -88,7 +88,14 @@ android {
|
||||
|
||||
buildTypes {
|
||||
debug {
|
||||
archivesBaseName = "openScale"
|
||||
// don't include version number into the apk filename for debug build type so Travis can find it
|
||||
applicationVariants.all { variant ->
|
||||
variant.outputs.all { output ->
|
||||
if (variant.buildType.name == "debug") {
|
||||
outputFileName = "openScale-debug.apk"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
release {
|
||||
archivesBaseName = "openScale-"+defaultConfig.versionName
|
||||
|
Reference in New Issue
Block a user