From 3df1b5e58cec97b269ad021de75f2596f633bea1 Mon Sep 17 00:00:00 2001 From: Staacks Date: Sun, 24 Nov 2024 10:01:53 +0100 Subject: [PATCH] This just fixes the wrong release name (0.180 instead of 0.18) which would not match the name of the build apk required for reproducible builds on F-Droid. --- 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 aebc3b6..d10aa9c 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -11,8 +11,8 @@ android { applicationId = "org.staacks.alpharemote" minSdk = 31 targetSdk = 35 - versionCode = 180 - versionName = "0.180" + versionCode = 181 + versionName = "0.18a" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" }