Merge "16kb: Update NDK version to r27" into main
diff --git a/constants.py b/constants.py
index f88cef6..08d313b 100644
--- a/constants.py
+++ b/constants.py
@@ -24,7 +24,7 @@
 CLANG_PREBUILT_VERSION: str = 'clang-r522817'
 
 # This is the ndk version used to build runtimes.
-NDK_VERSION: str = 'r26'
+NDK_VERSION: str = 'r27'
 
 # Targets for host.
 HOST_TARGETS: Set[str] = set(['X86'])
diff --git a/paths.py b/paths.py
index e94bd03..c4e1411 100644
--- a/paths.py
+++ b/paths.py
@@ -66,7 +66,7 @@
 XZ_SRC_DIR: Path = TOOLCHAIN_DIR / 'xz'
 ZSTD_SRC_DIR: Path = EXTERNAL_DIR / 'zstd'
 
-NDK_BASE: Path = TOOLCHAIN_DIR / 'prebuilts' /'ndk' / constants.NDK_VERSION
+NDK_BASE: Path = TOOLCHAIN_DIR / 'prebuilts' / 'ndk' / 'releases' / constants.NDK_VERSION
 
 RISCV64_ANDROID_SYSROOT: Path = TOOLCHAIN_DIR / 'prebuilts' / 'sysroot' / 'platform' / 'riscv64-linux-android'