mirror of
https://github.com/oliexdev/openScale.git
synced 2025-08-18 22:41:44 +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 {
|
buildTypes {
|
||||||
debug {
|
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 {
|
release {
|
||||||
archivesBaseName = "openScale-"+defaultConfig.versionName
|
archivesBaseName = "openScale-"+defaultConfig.versionName
|
||||||
|
Reference in New Issue
Block a user