From e0bf5ea7be95057a78a86eaba9e90412fc9913c7 Mon Sep 17 00:00:00 2001 From: Aayush Gupta Date: Fri, 11 Oct 2024 23:34:49 +0530 Subject: [PATCH] Revert "gradle: Suffix last git commit's hash into versionName" This reverts commit 376bdb3fbc47aec41a3a7cec7df183c5a010fb44. --- app/build.gradle.kts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 61a983826..2b31a654f 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -37,10 +37,6 @@ kotlin { jvmToolchain(17) } -val gitHash: String - get() = project.providers.exec { commandLine("git", "rev-parse", "--short", "HEAD") } - .standardOutput.asText.get().trim() - android { namespace = "com.aurora.store" compileSdk = 35 @@ -96,13 +92,11 @@ android { register("nightly") { initWith(getByName("release")) applicationIdSuffix = ".nightly" - versionNameSuffix = "-$gitHash" } debug { applicationIdSuffix = ".debug" signingConfig = signingConfigs.getByName("aosp") - versionNameSuffix = "-$gitHash" } }