From 4ca882de17fb6485fbd48b91ef72d7cfcc2c412b Mon Sep 17 00:00:00 2001 From: Patryk Radziszewski <100310118+Chefski@users.noreply.github.com> Date: Wed, 24 Apr 2024 22:40:00 +0100 Subject: [PATCH] Bump `version` and `versionCode` --- app/build.gradle.kts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index ebf491f791c..42fe7fa80fd 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -25,7 +25,7 @@ val ciRunNumber = providers.environmentVariable("GITHUB_RUN_NUMBER").orNull.orEm val isReleaseBuild = ciBuild && ciRef.contains("main") val devReleaseName = if (ciBuild) "(Dev #$ciRunNumber)" else "($buildCommit)" -val version = "2.8.0" +val version = "2.9.0" val versionDisplayName = "$version ${if (isReleaseBuild) "" else devReleaseName}" android { @@ -36,7 +36,7 @@ android { applicationId = "app.lawnchair.lawnicons" minSdk = 26 targetSdk = 34 - versionCode = 11 + versionCode = 12 versionName = versionDisplayName vectorDrawables.useSupportLibrary = true }