Skip to content
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

ci: update NDK version to 27.2.12479018 #102

Merged
merged 4 commits into from
Nov 6, 2024
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
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Setup the environment, open Android Studio.

![](../docs/images/android_local_gradle_error.png)

- Go to Tools > SDK Manager > Android SDK > SDK Tools. Make sure that "Show Package Details" is checked and install the NDK version that is required by the project (currently `27.1.12297006`).
- Go to Tools > SDK Manager > Android SDK > SDK Tools. Make sure that "Show Package Details" is checked and install the NDK version that is required by the project (currently `27.2.12479018`).

![](../docs/images/android_local_gradle_ndk.png)

Expand Down
2 changes: 1 addition & 1 deletion platform/jvm/capture/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ android {
checkReleaseBuilds = true
}

ndkVersion = "27.1.12297006"
ndkVersion = "27.2.12479018"
}

// Rust cargo build toolchain
Expand Down
2 changes: 1 addition & 1 deletion tools/android_sdk_wrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ readonly softlink_root_dir="/tmp/bitdrift-android-sdk"
readonly softlink_unarchived_dir="$softlink_root_dir/android-sdk-$android_sdk_version-unarchived"

readonly cmdline_tools_version="6.0"
readonly ndk_version="27.1.12297006"
readonly ndk_version="27.2.12479018"
readonly install_android_cmd_line_tools=(
"$android_sdk_unarchived_dir/tools/bin/sdkmanager"
"--install"
Expand Down
Loading