From 849ceca64922067760e66c1ed220d641f36d6505 Mon Sep 17 00:00:00 2001 From: Norman Breau Date: Fri, 26 Jul 2024 09:45:45 -0300 Subject: [PATCH] feat: Added Android 13 docs (#1357) --- .../en/dev/guide/platforms/android/index.md | 22 +++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/www/docs/en/dev/guide/platforms/android/index.md b/www/docs/en/dev/guide/platforms/android/index.md index fd9409786d..487cbd46c6 100644 --- a/www/docs/en/dev/guide/platforms/android/index.md +++ b/www/docs/en/dev/guide/platforms/android/index.md @@ -40,6 +40,22 @@ The supported [Android API Levels](https://developer.android.com/guide/topics/ma + + 13.0.x + 24 (7.0) - 34 (14.0) + + + + 12.0.x 24 (7.0) - 33 (13.0) @@ -161,9 +177,11 @@ To ensure your system meets the necessary requirements, please refer to the "[In ### Java Development Kit (JDK) -If you are using `cordova-android` 10.0.0 or greater, install the [Java Development Kit (JDK) 11](https://www.oracle.com/java/technologies/javase-jdk11-downloads.html). +If using `cordova-android` 13 or later, install the [Java Development Kit (JDK) 17](https://www.oracle.com/java/technologies/downloads/#java17). + +If using `cordova-android` 10 through 12, install the [Java Development Kit (JDK) 11](https://www.oracle.com/java/technologies/downloads/#java11) -If you are using any version below `cordova-android` 10.0.0, install the [Java Development Kit (JDK) 8](https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html). +If using `cordova-android` 9 or earlier, install the [Java Development Kit (JDK) 8](https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html). The `JAVA_HOME` environment variable must be set according to your JDK installation path. See the [Setting Environment Variables](#setting-environment-variables) section on how to set up environment variables. Alternatively as of `cordova-android` 10.0.0 or greater, `CORDOVA_JAVA_HOME` can be set in place of `JAVA_HOME`, allowing a JDK install to be used specifically for Cordova development.