From 2174a19c0fb1cbb6bc0428af51b8625930bde415 Mon Sep 17 00:00:00 2001 From: GiuseppeS Date: Mon, 25 Jan 2021 09:51:53 +0100 Subject: [PATCH] Cambiato filename build --- app/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 33de6da3..8ed06aa8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -21,7 +21,7 @@ android { applicationVariants.all { variant -> variant.outputs.all { output -> - output.outputFileName = "android-release_v2.apk" + output.outputFileName = "android-release.apk" } } @@ -60,8 +60,8 @@ android { build { doLast { - delete "$projectDir/build/outputs/apk/release/version_v2.txt" - file("$projectDir/build/outputs/apk/release/version_v2.txt").text = appVersionCode + '\n' + appVersionName + delete "$projectDir/build/outputs/apk/release/version.txt" + file("$projectDir/build/outputs/apk/release/version.txt").text = appVersionCode + '\n' + appVersionName } }