From e0731197fc63e0e72a5ba5714e3ec7e203d9726c Mon Sep 17 00:00:00 2001 From: MohitMaliFtechiz Date: Wed, 17 Jul 2024 23:49:53 +0530 Subject: [PATCH] Removed the testing date from code. --- buildSrc/src/main/kotlin/GenerateVersionCode.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildSrc/src/main/kotlin/GenerateVersionCode.kt b/buildSrc/src/main/kotlin/GenerateVersionCode.kt index 4e7872fb4..7cf277771 100644 --- a/buildSrc/src/main/kotlin/GenerateVersionCode.kt +++ b/buildSrc/src/main/kotlin/GenerateVersionCode.kt @@ -22,7 +22,7 @@ import java.time.temporal.ChronoUnit object GenerateVersionCode { fun getVersionCode(): Int { // the date when the automatic version code generation started - val lastDate = LocalDate.of(2020, 7, 17) + val lastDate = LocalDate.of(2024, 7, 17) // Calculate the number of days between the lastDate and today's date. // This gives us the total number of days since the last version code was set.