Skip to content

blog: [email protected] release #1418

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 30, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions www/_posts/2025-04-30-cordova-android-14.0.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
---
layout: post
author:
name: Bryan Ellis
title: "Cordova Android 14.0.1 Released!"
categories: announcements
tags: news releases
---

We are happy to announce that we have just released `Cordova Android 14.0.1`! This is one of Cordova's supported platforms for building Android applications.

* [[email protected]](https://www.npmjs.com/package/cordova-android)

**To upgrade:**

```bash
cordova platform remove android
cordova platform add [email protected]
```

**To install:**

```bash
cordova platform add [email protected]
```

## Release Highlights

### Fixes

* **Fetching Gradle Path for Windows**

Resolved an issue in Windows environments where projects containing spaces in their paths could not be built due to changes in how the Gradle path was fetched.

* **Setting Gradle's java.home**

Resolved an issue where the user-defined environment variable `JAVA_HOME` or `CORDOVA_JAVA_HOME` was not being used to set the `java.home` property for the Gradle Wrapper.

<!--more-->
# Changes include:

**Fixes:**

* [GH-1795](https://github.com/apache/cordova-android/pull/1795) fix: configure gradle `java.home`
* [GH-1793](https://github.com/apache/cordova-android/pull/1793) fix(windows): get gradle path with `which` command