You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by er...@apache.org on 2021/07/30 05:00:46 UTC

[cordova-docs] branch master updated: doc: add android 10.0.1 release blog post (#1183)

This is an automated email from the ASF dual-hosted git repository.

erisu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-docs.git


The following commit(s) were added to refs/heads/master by this push:
     new 80d4f7d  doc: add android 10.0.1 release blog post (#1183)
80d4f7d is described below

commit 80d4f7d054f0527564a06a103aeea7a992793be1
Author: エリス <er...@users.noreply.github.com>
AuthorDate: Fri Jul 30 14:00:40 2021 +0900

    doc: add android 10.0.1 release blog post (#1183)
---
 www/_posts/2021-07-30-cordova-android-10.0.1.md | 66 +++++++++++++++++++++++++
 1 file changed, 66 insertions(+)

diff --git a/www/_posts/2021-07-30-cordova-android-10.0.1.md b/www/_posts/2021-07-30-cordova-android-10.0.1.md
new file mode 100644
index 0000000..a60dcaa
--- /dev/null
+++ b/www/_posts/2021-07-30-cordova-android-10.0.1.md
@@ -0,0 +1,66 @@
+---
+layout: post
+author:
+    name: Bryan Ellis
+title:  "Cordova Android 10.0.1 Released!"
+categories: announcements
+tags: news releases
+---
+
+We are happy to announce that we have just released a bugfix update for `Cordova Android (10.0.1)`!  This is one of Cordova's supported platforms for building Android mobile applications.
+
+* [cordova-android@10.0.1](https://www.npmjs.com/package/cordova-android)
+
+**To upgrade:**
+
+```bash
+cordova platform remove android
+cordova platform add android@10.0.1
+```
+
+## Release Highlights
+
+In this patch release, we had fixed three reported issues that caused build issues.
+
+* **Fixed `GradlePluginGoogleServicesEnabled` Invalid Version Error**
+
+    Projects that set the `GradlePluginGoogleServicesEnabled` config flag to `true` saw an invalid version error. The error was caused by the build process reading a bad variable reference.
+
+* **Fixed Incorrect Fetching of Latest Build Tools**
+
+    Users who have installed build tools 31.x noticed Cordova attempting to use the newer build tools by default.
+
+    By default, Cordova-Android 10.x tries to fetch the latest installed build tools, but it should be only selecting within the supported major release range.
+
+    For example, Cordova-Android 10.x supports SDK build tools 30.0.3. If a newer version of build tools within 30.x was released and installed, Cordova should fetch and use it. If the environment has 31.x or higher, those should be ignored.
+
+    Newer major release versions are not tested and may not be compatible with Cordova.
+
+    Only within the supported major range are now being discovered and used.
+
+* **Fixed Building with Pinned Build Tools**
+
+    This issue was also noticed by users who have installed the latest Android build tools SDK 31.
+
+    Since SDK 31 contains breaking that makes it incompatible with Cordova, users tried to pin the build tools version to 30.0.3.
+
+    Because of the above issue **Fixed Incorrect Fetching of Latest Build Tools**, the provided pinned version was being ignored.
+
+    Pinned versions now take higher priority over the fetched the latest version functionality.
+
+Please report any issues you find at [issues.cordova.io](http://issues.cordova.io/)!
+
+<!--more-->
+## Full Changelog
+
+**Fixes:**
+
+* [GH-1295](https://github.com/apache/cordova-android/pull/1295) fix: `maven-publish` setup
+* [GH-1293](https://github.com/apache/cordova-android/pull/1293) fix: `gradle` build tools config
+* [GH-1294](https://github.com/apache/cordova-android/pull/1294) fix: automatic latest build tools finding
+* [GH-1287](https://github.com/apache/cordova-android/pull/1287) fix: Google Services Gradle Plugin version check failure
+
+**Chores:**
+
+* [GH-1291](https://github.com/apache/cordova-android/pull/1291) chore: add missing release notes
+* [GH-1286](https://github.com/apache/cordova-android/pull/1286) chore: update `README` requirements

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org