From f8be875e98f41672c3ba4a4112ada5b599d24c13 Mon Sep 17 00:00:00 2001 From: Adam Novak Date: Tue, 11 Aug 2020 08:53:55 -0700 Subject: [PATCH] Add print for version name which should be set on all releases --- app/build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 578637aaf4..0461d9a2f1 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -235,11 +235,14 @@ android.applicationVariants.all { variant -> println("Flavor: " + variant.flavorName) println("Telemetry enabled: " + !isDebug) + if (useReleaseVersioning) { // The Google Play Store does not allow multiple APKs for the same app that all have the // same version code. Therefore we need to have different version codes for our ARM and x86 // builds. - + + println("Version Name: " + versionName) + variant.outputs.each { output -> def abi = output.getFilter(OutputFile.ABI) // We use the same version code generator, that we inherited from Fennec, across all channels - even on