From f6d679f2b2fec5aaf2a5c9cbd1b4eeb08119798e Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Wed, 27 Sep 2017 13:59:18 -0700 Subject: [PATCH 1/2] CB-13323: Cordova-Android 6.3.0 Release Announcement --- www/_posts/2017-09-27-android-release.md | 42 ++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 www/_posts/2017-09-27-android-release.md diff --git a/www/_posts/2017-09-27-android-release.md b/www/_posts/2017-09-27-android-release.md new file mode 100644 index 0000000000..e2f1e377bd --- /dev/null +++ b/www/_posts/2017-09-27-android-release.md @@ -0,0 +1,42 @@ +--- +layout: post +author: + name: Joe Bowser + url: https://twitter.com/infil00p +title: "Cordova Android 6.3.0 Released!" +categories: announcements +tags: news releases +--- + +We are happy to announce that `Cordova Android 6.3.0` has been released! + +This release now targets the latest Android API level of API 26 and has fixed issues related to the **Android SDK Tools 26.0.2** release. **Google** changed how the Android emulator was executed, causing errors when deploying to the emulator. + +This release contains the integration of `cordova-plugin-compat`, so please remove that plugin from projects once you update to this version of `cordova-android`. + +To upgrade: + + npm install -g cordova + cd my_project + cordova platform update android@6.2.1 + +To add it explicitly: + + cordova platform add android@6.2.1 + + +## What's new in Android +* [CB-6936](https://issues.apache.org/jira/browse/CB-6936) fix crash when calling methods on a destroyed webview +* [CB-12981](https://issues.apache.org/jira/browse/CB-12981) handle SDK 26.0.2 slightly different AVD list output for **Android** 8+ AVDs. Would cause "cannot read property replace of undefined" errors when trying to deploy an **Android** 8 emulator. +* Updated maven repo to include most recent lib versions +* [CB-13177](https://issues.apache.org/jira/browse/CB-13177) Updating to API Level 26 +* Revert [CB-12015](https://issues.apache.org/jira/browse/CB-12015) initial-scale values less than 1.0 are ignored on **Android** +* [CB-12730](https://issues.apache.org/jira/browse/CB-12730) The Cordova Compatibility Plugin is now integrated into `cordova-android` +* [CB-12453](https://issues.apache.org/jira/browse/CB-12453) Remove unnecessary double quotes from .bat files which are the causes of crash if project path contains spaces +* [CB-13031](https://issues.apache.org/jira/browse/CB-13031) Fix bug with case-sensitivity of **Android**-packageName +* [CB-10916](https://issues.apache.org/jira/browse/CB-10916) Support display name for **Android** +* [CB-12423](https://issues.apache.org/jira/browse/CB-12423) make explicit JDK 1.8 or greater is needed in the `README`, we require 1.8 for compilation, but do not have 1.8 Java features yet +* [CB-12605](https://issues.apache.org/jira/browse/CB-12605) In **Windows** get **Android** studio path from the registry +* [CB-12617](https://issues.apache.org/jira/browse/CB-12617) : removed node0.x support for platforms and added engineStrict + +# From b4c374a72b312c07f4f3e71dbc3ba4b2107700cd Mon Sep 17 00:00:00 2001 From: Joe Bowser Date: Thu, 28 Sep 2017 09:12:02 -0700 Subject: [PATCH 2/2] Fixing typo --- www/_posts/2017-09-27-android-release.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/_posts/2017-09-27-android-release.md b/www/_posts/2017-09-27-android-release.md index e2f1e377bd..abe7d980bb 100644 --- a/www/_posts/2017-09-27-android-release.md +++ b/www/_posts/2017-09-27-android-release.md @@ -18,11 +18,11 @@ To upgrade: npm install -g cordova cd my_project - cordova platform update android@6.2.1 + cordova platform update android@6.3.0 To add it explicitly: - cordova platform add android@6.2.1 + cordova platform add android@6.3.0 ## What's new in Android