From 5abafe7b6e1e4eee7b6c9a238e7e0358f20cb52b Mon Sep 17 00:00:00 2001 From: cyberta Date: Wed, 4 Dec 2019 00:49:51 +0100 Subject: avoid apk file name with spaces --- app/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 31e00ffb..932fa75c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -325,6 +325,7 @@ android.applicationVariants.all { variant -> def flavors = variant.productFlavors // flavorDimensions "branding" -> 0, "implementation" -> 1, "abi" -> 2 def branding = flavors[0] + def trimmedAppName = branding.appName.replaceAll(' ', '') def abiDimension = flavors[2] def abiFilter = abiDimension.abiFilter if (abiFilter.length() > 0) { @@ -339,7 +340,7 @@ android.applicationVariants.all { variant -> variant.resValue "string", "app_name", "\"${branding.appName}${buildType.appSuffix}\"" variant.outputs.all { output -> - output.outputFileName = "${branding.appName}${abiFilter}_${buildType.name}${tag}.apk" + output.outputFileName = "${trimmedAppName}${abiFilter}_${buildType.name}${tag}.apk" } // reconfigure version codes for split builds -- cgit v1.2.3