Skip to content

Commit 824155c

Browse files
authored
Merge pull request #213 from OpenBrickProtocolFoundation/update_ndk_to_28
build: update the ndk to v28
2 parents eced13c + 81f1b14 commit 824155c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/android.yml

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

4747
- name: Setup NDK
4848
run: |
49-
sdkmanager --install "ndk;28.0.12916984"
49+
sdkmanager --install "ndk;28.0.13004108"
5050
5151
- name: Build native libraries
5252
run: |

platforms/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ android {
248248
}
249249

250250
compileSdkVersion 35
251-
ndkVersion "28.0.12916984"
251+
ndkVersion "28.0.13004108"
252252
defaultConfig {
253253
if (buildAsApplication) {
254254
applicationId "com.github.oopetris"

platforms/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
google()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:8.7.2'
9+
classpath 'com.android.tools.build:gradle:8.8.0'
1010

1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files

platforms/build-android.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ if [ ! -d "toolchains" ]; then
66
mkdir -p toolchains
77
fi
88

9-
export NDK_VER_DOWNLOAD="r28-beta3"
10-
export NDK_VER_DESC="r28-beta3"
9+
export NDK_VER_DOWNLOAD="r28"
10+
export NDK_VER_DESC="r28"
1111

1212
export BASE_PATH="$PWD/toolchains/android-ndk-$NDK_VER_DESC"
1313
export ANDROID_NDK_HOME="$BASE_PATH"

0 commit comments

Comments
 (0)