From 613dc9893f672313e2c572c0089ece7475e04f5b Mon Sep 17 00:00:00 2001 From: agnostic-apollo Date: Sat, 22 Jun 2024 21:52:51 +0500 Subject: [PATCH] Release: v0.8.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 `8` 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 - https://github.com/termux-play-store/termux-apps/commit/9c10607a3f93978d00c2d01d884ac45b8532b16d --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 88ab4f3..249bc53 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -12,8 +12,8 @@ android { applicationId "com.termux.boot" minSdk project.properties.minSdkVersion.toInteger() targetSdk project.properties.targetSdkVersion.toInteger() - versionCode 8 - versionName "0.8.0" + versionCode 1000 + versionName "0.8.1" if (appVersionName) versionName = appVersionName validateVersionName(versionName)