From 515b765f518555e7c263e15a696d22822c65f9d6 Mon Sep 17 00:00:00 2001 From: Patryk Radziszewski <100310118+Chefski@users.noreply.github.com> Date: Tue, 26 Mar 2024 14:27:07 +0000 Subject: [PATCH] Bump `version` and `versionCode` Update to Lawnicons 2.8.0 --- 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 2f83b8184ee..7950b8610b1 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.7.0" +val version = "2.8.0" val versionDisplayName = "$version ${if (isReleaseBuild) "" else devReleaseName}" android { @@ -36,7 +36,7 @@ android { applicationId = "app.lawnchair.lawnicons" minSdk = 26 targetSdk = 34 - versionCode = 10 + versionCode = 11 versionName = versionDisplayName vectorDrawables.useSupportLibrary = true }