From d7caa4fa24f05d4577eae60b2e127e4b2685d1ff Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Wed, 6 Jul 2022 02:06:59 +0200 Subject: [PATCH] [android] Properly print version and code in the build log Signed-off-by: Alexander Borsuk --- android/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 174aa5fe0a..b496f39967 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -139,8 +139,8 @@ android { defaultConfig { // Default package name is taken from the manifest and should be app.organicmaps def ver = getVersion() - println('Version: ' + ver.first) - println('VersionCode: ' + ver.second) + println('Version: ' + ver.second) + println('VersionCode: ' + ver.first) versionCode = ver.first versionName = ver.second minSdkVersion propMinSdkVersion.toInteger()