From fa04cbaba655d25b94ff5a8a3ef6c24404268458 Mon Sep 17 00:00:00 2001 From: SuperDragonXD <70206496+SuperDragonXD@users.noreply.github.com> Date: Sun, 16 Jun 2024 12:08:48 +0800 Subject: [PATCH] Bump `versionName` 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 a587198fd0c..75a0528d589 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -26,7 +26,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.10.0" +val version = "2.10.1" val versionDisplayName = "$version ${if (isReleaseBuild) "" else devReleaseName}" android { @@ -37,7 +37,7 @@ android { applicationId = "app.lawnchair.lawnicons" minSdk = 26 targetSdk = 34 - versionCode = 13 + versionCode = 14 versionName = versionDisplayName vectorDrawables.useSupportLibrary = true }