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..c50b66c90 100644 --- a/docs/cpp-start-android.md +++ b/docs/cpp-start-android.md @@ -33,7 +33,9 @@ set "ANDROID_NDK_HOME=%ANDROID_NDK%" You can specify your own versions of dependencies as needed. ->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: The SDK requires a minimum Android API level 23 (Android 6.0 Marshmallow). + +>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