Merge "Switch to NDK r27-beta1" into main
diff --git a/resources/Dockerfile b/resources/Dockerfile
index fc59cd3..3e1cd14 100644
--- a/resources/Dockerfile
+++ b/resources/Dockerfile
@@ -11,10 +11,10 @@
     apt clean &&                                          \
     rm -rf /var/cache/apt/archives /var/cache/apt/lists/*
 
-RUN curl -o android-ndk.zip https://dl.google.com/android/repository/android-ndk-r26-linux.zip && \
-    unzip android-ndk.zip &&                                                                      \
-    rm android-ndk.zip &&                                                                         \
-    mv /android-ndk-r26 /ndk
+RUN curl -o android-ndk.zip https://dl.google.com/android/repository/android-ndk-r27-beta1-linux.zip && \
+    unzip android-ndk.zip &&                                                                            \
+    rm android-ndk.zip &&                                                                               \
+    mv /android-ndk-r27-beta1 /ndk
 
 RUN apt remove -y ca-certificates curl && apt autoremove -y
 
diff --git a/src/android_rust/paths.py b/src/android_rust/paths.py
index cd3e4f2..f0def75 100644
--- a/src/android_rust/paths.py
+++ b/src/android_rust/paths.py
@@ -136,7 +136,7 @@
 
 # Use of the NDK should eventually be removed so as to make this a Platform
 # target, but is used for now as a transition stage.
-NDK_VERSION         = "r26"
+NDK_VERSION         = "r27-beta1"
 NDK_DIRECTORY_NAME  = f"android-ndk-{NDK_VERSION}"
 NDK_RELEASE_ARCHIVE = f"{NDK_DIRECTORY_NAME}-linux.zip"
 NDK_DOWNLOAD_URL    = f"https://dl.google.com/android/repository/{NDK_RELEASE_ARCHIVE}"