From 483a10a3a71ff9e426d2e4bc98e92e44cfc577e0 Mon Sep 17 00:00:00 2001 From: Ramsey Smith <142836716+ramsey-livefront@users.noreply.github.com> Date: Wed, 13 Mar 2024 15:41:45 -0600 Subject: [PATCH] BIT-2069: Upgrade app version name (#1141) --- app/build.gradle.kts | 2 +- .../ui/platform/feature/settings/about/AboutViewModelTest.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index c2e985d7b0..b5b0aebd28 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -26,7 +26,7 @@ android { minSdk = libs.versions.minSdk.get().toInt() targetSdk = libs.versions.targetSdk.get().toInt() versionCode = 1 - versionName = "1.0.0" + versionName = "2024.03.0" ksp { // The location in which the generated Room Database Schemas will be stored in the repo. diff --git a/app/src/test/java/com/x8bit/bitwarden/ui/platform/feature/settings/about/AboutViewModelTest.kt b/app/src/test/java/com/x8bit/bitwarden/ui/platform/feature/settings/about/AboutViewModelTest.kt index a2970e503d..69d9bf2e85 100644 --- a/app/src/test/java/com/x8bit/bitwarden/ui/platform/feature/settings/about/AboutViewModelTest.kt +++ b/app/src/test/java/com/x8bit/bitwarden/ui/platform/feature/settings/about/AboutViewModelTest.kt @@ -153,7 +153,7 @@ private val fixedClock = Clock.fixed( ZoneId.systemDefault(), ) private val DEFAULT_ABOUT_STATE: AboutState = AboutState( - version = "Version: 1.0.0 (1)".asText(), + version = "Version: ${BuildConfig.VERSION_NAME} (${BuildConfig.VERSION_CODE})".asText(), isSubmitCrashLogsEnabled = false, copyrightInfo = "© Bitwarden Inc. 2015-" .asText()