Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@ 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) |

## Target Platforms

| 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: | |
Expand Down
4 changes: 3 additions & 1 deletion docs/cpp-start-android.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down