From 7c5992d379f2e2a3bbf43a608147aaef57d0ca04 Mon Sep 17 00:00:00 2001 From: agnostic-apollo Date: Tue, 11 Jun 2024 03:18:21 +0500 Subject: [PATCH] Release: v0.119.0-beta.1 The `versionCode` has been bumped to `1020` so that users who have installed from F-Droid or GitHub should not have the app attempted to be updated by Google PlayStore and failing and also shown in PlayStore app updates list due to non-collaborative `v0.120` app release on PlayStore that set the `versionCode` higher than the latest F-Droid or GitHub `118` release. Unlike F-Droid, PlayStore does not check for difference in app APK signature before attempting to download and then failing to install due to signature mismatch. The `v0.118.1` was released under `versionCode` `1000`, we bump `versionCode` to `1020` so that there are `20` version codes in between that can be used as patch releases for `0.118.x` in case needed, like for `v0.118.2`. - https://github.com/termux/termux-app/discussions/4000 - https://github.com/termux/termux-app/issues/4012 --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 2a0f75607d..1c6045b4a6 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -41,8 +41,8 @@ android { applicationId "com.termux" minSdkVersion project.properties.minSdkVersion.toInteger() targetSdkVersion project.properties.targetSdkVersion.toInteger() - versionCode 118 - versionName "0.118.0" + versionCode 1020 + versionName "0.119.0-beta.1" if (appVersionName) versionName = appVersionName validateVersionName(versionName)