From 43317b78c920a48254f8846f5e14b5f873faa271 Mon Sep 17 00:00:00 2001 From: agnostic-apollo Date: Tue, 18 Jun 2024 04:10:09 +0500 Subject: [PATCH] Release: v0.118.1 The `versionCode` has been bumped to `1000` 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. - 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 d64e33fb15..10b0db1f5d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -30,8 +30,8 @@ android { applicationId "com.termux" minSdkVersion project.properties.minSdkVersion.toInteger() targetSdkVersion project.properties.targetSdkVersion.toInteger() - versionCode 118 - versionName "0.118.0" + versionCode 1000 + versionName "0.118.1" if (appVersionName) versionName = appVersionName validateVersionName(versionName)