From 8b7412d207f8514663f730c645545ca0d60bdd40 Mon Sep 17 00:00:00 2001 From: Patryk Radziszewski <100310118+Chefski@users.noreply.github.com> Date: Fri, 5 Jan 2024 12:53:59 +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 99cbea53cdf..daf0f248644 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -24,7 +24,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.5.0" +val version = "2.6.0" val versionDisplayName = "$version ${if (isReleaseBuild) "" else devReleaseName}" android { @@ -35,7 +35,7 @@ android { applicationId = "app.lawnchair.lawnicons" minSdk = 26 targetSdk = 34 - versionCode = 8 + versionCode = 9 versionName = versionDisplayName vectorDrawables.useSupportLibrary = true }