From 34d3302d91588d551eb3322cc6893cdb0e9b1326 Mon Sep 17 00:00:00 2001 From: Todd Zullinger Date: Sun, 23 Jun 2024 19:54:24 -0400 Subject: [PATCH] Release: v0.13.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.14` app release on PlayStore that set the `versionCode` higher than the latest F-Droid or GitHub `13` 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/e51f8d2d636c4f016b9fecf60cbe0957c2750377#diff-afedc8b49d567d2de57705052be9f6521366702c15f6ea32b2ae45174cef8221 --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 98c1818..08a7501 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,8 +9,8 @@ android { applicationId "com.termux.widget" minSdkVersion project.properties.minSdkVersion.toInteger() targetSdkVersion project.properties.targetSdkVersion.toInteger() - versionCode 13 - versionName "0.13.0" + versionCode 1000 + versionName "0.13.1" if (appVersionName) versionName = appVersionName validateVersionName(versionName)