From 6cbba5fbe903da497cc8eb0a670e23e3290ea694 Mon Sep 17 00:00:00 2001 From: agnostic-apollo Date: Mon, 23 Dec 2024 05:20:31 +0500 Subject: [PATCH] Release: v0.14.0 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 in case the `versionCode` is set to higher than the latest F-Droid or GitHub 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. - termux/termux-app#4000 - termux/termux-app#4012 --- README.md | 2 +- app/build.gradle | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 53894b7..e4033bf 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ A [Termux] plugin app to run scripts in Termux with launcher shortcuts and widge ### Installation -Latest version is `v0.13.0`. +Latest version is `v0.14.0`. Check [`termux-app` Installation](https://github.com/termux/termux-app#Installation) for details before reading forward. diff --git a/app/build.gradle b/app/build.gradle index a22cdbe..d986ec9 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -11,8 +11,8 @@ android { applicationId "com.termux.widget" minSdk project.properties.minSdkVersion.toInteger() targetSdk project.properties.targetSdkVersion.toInteger() - versionCode 13 - versionName "0.13.0" + versionCode 1000 + versionName "0.14.0" if (appVersionName) versionName = appVersionName validateVersionName(versionName)