From 41239ba1e9f853f9ec1654e3e14ba0f734e127b2 Mon Sep 17 00:00:00 2001 From: Ranjith Date: Fri, 12 Dec 2025 11:37:24 +0530 Subject: [PATCH] WMS-29962 | prevent trailing whitespace in generated minSdkVersion value --- src/android.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/android.js b/src/android.js index 812714f..dd635a7 100644 --- a/src/android.js +++ b/src/android.js @@ -19,7 +19,7 @@ const loggerLabel = 'android-build'; function setKeyStoreValuesInGradleProps(content, keystoreName, ksData) { // TODO: if key pwds are changed, then just update the values. if(content.search(/MYAPP_UPLOAD_STORE_PASSWORD/gm) == -1) { - return content.concat(` \n MYAPP_UPLOAD_STORE_FILE=${keystoreName} + return content.concat(`\nMYAPP_UPLOAD_STORE_FILE=${keystoreName} MYAPP_UPLOAD_KEY_ALIAS=${ksData.keyAlias} MYAPP_UPLOAD_STORE_PASSWORD=${ksData.storePassword} MYAPP_UPLOAD_KEY_PASSWORD=${ksData.keyPassword}`);