Skip to content

Commit cc743d2

Browse files
committed
android: update to clang 18, by using ndk 27 beta1
1 parent 4c22e98 commit cc743d2

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/android.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ jobs:
4646

4747
- name: Setup NDK
4848
run: |
49-
sdkmanager --install "ndk;26.3.11579264"
49+
sdkmanager --install "ndk;27.0.11718014-beta1"
50+
5051
5152
- name: Build natibe libraries
5253
run: |

platforms/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ android {
212212
}
213213

214214
compileSdkVersion 34
215-
ndkVersion "26.3.11579264"
215+
ndkVersion "27.0.11718014-beta1"
216216
defaultConfig {
217217
if (buildAsApplication) {
218218
applicationId "com.github.oopetris"

platforms/build-android.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ set -e
44

55
mkdir -p toolchains
66

7-
export NDK_VER_DOWNLOAD="r26d"
8-
export NDK_VER_DESC="r26d"
7+
export NDK_VER_DOWNLOAD="r27-beta1"
8+
export NDK_VER_DESC="r27-beta1"
99

1010
export BASE_PATH="$PWD/toolchains/android-ndk-$NDK_VER_DESC"
1111
export ANDROID_NDK_HOME="$BASE_PATH"

0 commit comments

Comments
 (0)