From 149866057230a286f7a5fb21aed16cd7d06cd08b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 12:33:21 +0000 Subject: [PATCH 1/3] Initial plan From 93a24dc3b9c5979030e14c4dd55dab8cd25213ba Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 4 Feb 2026 12:34:46 +0000 Subject: [PATCH 2/3] Update documentation with Android API 23+ requirements Co-authored-by: anod <171704+anod@users.noreply.github.com> --- README.md | 4 ++-- docs/cpp-start-android.md | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1e7cd710f..c4da1e1c6 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ Other resources to learn how to setup the build system: | macOS 10.15+ | Clang Xcode 12.0+ | | Ubuntu 20.04 LTS | GCC 9.x.x | | Ubuntu 22.04 LTS | GCC 11.x.x | - | Windows 10 | Android Studio/Gradle | + | Windows 10 | Android Studio/Gradle 8.5, Java 17 | | Windows Server 2016 | Visual Studio 2017 (vc141) | | Windows Server 2022 | Visual Studio 2022 (vc143) | @@ -76,7 +76,7 @@ Other resources to learn how to setup the build system: | Target Platform | Supported | Covered by CI | | ------------------------------ | ------------------ | ------------------ | - | Android | :white_check_mark: | :white_check_mark: | + | Android (API 23+) | :white_check_mark: | :white_check_mark: | | iOS 12+ (simulator) | :white_check_mark: | :white_check_mark: | | iOS 12+ (arm64, arm64e) | :white_check_mark: | | | Linux (x86, x64, arm, aarch64) | :white_check_mark: | | diff --git a/docs/cpp-start-android.md b/docs/cpp-start-android.md index ca60d2f8a..aba9ba767 100644 --- a/docs/cpp-start-android.md +++ b/docs/cpp-start-android.md @@ -33,6 +33,8 @@ set "ANDROID_NDK_HOME=%ANDROID_NDK%" You can specify your own versions of dependencies as needed. +>Note: The SDK requires a minimum Android API level 23 (Android 6.0 Marshmallow). + >Note: Only Java JDKs 8-13 will work. Java JDK 14+ will fail to build, due to an issue with the version of Gradle currently in use. ## 3. Integrate the SDK into your C++ project From 1cddf2fca47ae587cec1efcb20cad84196c19299 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 5 Feb 2026 10:37:38 +0000 Subject: [PATCH 3/3] Update Java version requirement to Java 17 for Gradle 8.5 Co-authored-by: anod <171704+anod@users.noreply.github.com> --- docs/cpp-start-android.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cpp-start-android.md b/docs/cpp-start-android.md index aba9ba767..c50b66c90 100644 --- a/docs/cpp-start-android.md +++ b/docs/cpp-start-android.md @@ -35,7 +35,7 @@ You can specify your own versions of dependencies as needed. >Note: The SDK requires a minimum Android API level 23 (Android 6.0 Marshmallow). ->Note: Only Java JDKs 8-13 will work. Java JDK 14+ will fail to build, due to an issue with the version of Gradle currently in use. +>Note: Java 17 or higher is required. The SDK uses Gradle 8.5, which requires Java 17 as a minimum version. ## 3. Integrate the SDK into your C++ project