From a155a430e927a454597ab4d0382df4dfc3cfc0e7 Mon Sep 17 00:00:00 2001 From: Sasikanth Miriyampalli Date: Mon, 3 Oct 2022 19:13:40 +0530 Subject: [PATCH] Remove dangling `versionName` variable in app build Gradle file --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index c8764682..55058c95 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -42,7 +42,7 @@ android { } if (project.properties["VERSION_NAME"] != null) { - versionName = versionName project.properties["VERSION_NAME"] + versionName = project.properties["VERSION_NAME"] } else { versionName = "1.0.0" }