Skip to content

Commit

Permalink
Android: upgrade NDK version to 25.2.9519653
Browse files Browse the repository at this point in the history
  • Loading branch information
ericoporto committed Aug 30, 2023
1 parent a1895ac commit 2cae0f3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Android/agsplayer/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
buildToolsVersion "33.0.1"
// the android plugin has a bug that requires specifying ndkVersion in every module, even when unused
// this version should match what is installed in the CI
ndkVersion '25.1.8937393'
ndkVersion '25.2.9519653'

defaultConfig {
applicationId "uk.co.adventuregamestudio.agsplayer"
Expand Down
2 changes: 1 addition & 1 deletion Android/library/runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ else {
android {
compileSdkVersion 33
buildToolsVersion "33.0.1"
ndkVersion '25.1.8937393'
ndkVersion '25.2.9519653'

defaultConfig {
if (buildAsApplication) {
Expand Down
2 changes: 1 addition & 1 deletion Editor/AGS.Editor/BuildTargets/BuildTargetAndroid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ private void InstallSdkToolsIfNeeded()
{
string prjDir = GetAndroidProjectInCompiledDir();

string packages = "\"build-tools;33.0.1\" \"ndk;25.1.8937393\" \"platforms;android-33\"";
string packages = "\"build-tools;33.0.1\" \"ndk;25.2.9519653\" \"platforms;android-33\"";

AndroidUtilities.RunSdkManager(packages, prjDir);
}
Expand Down
2 changes: 1 addition & 1 deletion ci/android/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ghcr.io/cirruslabs/android-sdk:33-ndk
# CirrusCI Android NDK image uses Ubuntu 22.04
# ANDROID_NDK_VERSION=25.1.8937393
# ANDROID_NDK_VERSION=25.2.9519653
# ANDROID_BUILD_TOOLS_VERSION=33.0.1

ARG APT_CONF_LOCAL=99local
Expand Down

0 comments on commit 2cae0f3

Please sign in to comment.