Skip to content

Commit 00fe71c

Browse files
committed
Use NDK 24.0.8215888
This needs to be forced in a few places otherwise the build tries to pull in ndk 23
1 parent 65ee814 commit 00fe71c

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

ReactAndroid/build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -528,9 +528,7 @@ android {
528528
if (rootProject.hasProperty("ndkPath")) {
529529
ndkPath rootProject.ext.ndkPath
530530
}
531-
if (rootProject.hasProperty("ndkVersion")) {
532-
ndkVersion rootProject.ext.ndkVersion
533-
}
531+
ndkVersion = "24.0.8215888"
534532

535533
defaultConfig {
536534
minSdkVersion(21)

template/android/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ buildscript {
77
compileSdkVersion = 33
88
targetSdkVersion = 33
99

10-
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
11-
ndkVersion = "23.1.7779620"
10+
ndkVersion = "24.0.8215888"
1211
}
1312
repositories {
1413
google()

0 commit comments

Comments
 (0)