Skip to content

Commit b50de4b

Browse files
authored
Update Android NDK from r28 to r29 (google#1387)
Android NDK r29 was released on Oct 7, 2025 [1]. With that r28 now reaches to EOL and is no longer supported. [1]: https://github.com/android/ndk/releases/tag/r29 PiperOrigin-RevId: 829743763
1 parent b4d174f commit b50de4b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

docs/build_mozc_for_android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ python3 build_tools/update_deps.py
5757

5858
In this step, additional build dependencies will be downloaded.
5959

60-
* [Android NDK r28](https://github.com/android/ndk/wiki/Home/24fe2d7ee3591346e0e8ae615977a15c0a4fba40#ndk-r28)
60+
* [Android NDK r29](https://github.com/android/ndk/wiki/Home/da2aa451f142a10203894c58fd1af78248fb06b4#ndk-r29)
6161
* [git submodules](../.gitmodules)
6262

6363
### Build `libmozc.so` for Android

src/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ android_ndk_repository_extension = use_extension(
166166
"android_ndk_repository_extension",
167167
)
168168
android_ndk_repository_extension.configure(
169-
path = "$WORKSPACE_ROOT/third_party/ndk/android-ndk-r28",
169+
path = "$WORKSPACE_ROOT/third_party/ndk/android-ndk-r29",
170170
)
171171
use_repo(android_ndk_repository_extension, "androidndk")
172172

src/build_tools/update_deps.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,15 @@ def __hash__(self):
8989
)
9090

9191
NDK_LINUX = ArchiveInfo(
92-
url='https://dl.google.com/android/repository/android-ndk-r28-linux.zip',
93-
size=723148067,
94-
sha256='a186b67e8810cb949514925e4f7a2255548fb55f5e9b0824a6430d012c1b695b',
92+
url='https://dl.google.com/android/repository/android-ndk-r29-linux.zip',
93+
size=783549481,
94+
sha256='4abbbcdc842f3d4879206e9695d52709603e52dd68d3c1fff04b3b5e7a308ecf',
9595
)
9696

9797
NDK_MAC = ArchiveInfo(
98-
url='https://dl.google.com/android/repository/android-ndk-r28-darwin.zip',
99-
size=950413046,
100-
sha256='19b16241e8e8d4c8e4f3729b8a0a625dd240394e1f1cd072596df891317e22a9',
98+
url='https://dl.google.com/android/repository/android-ndk-r29-darwin.zip',
99+
size=1049519838,
100+
sha256='ce5e4b100ec5fe5be4eb3edcb2c02528824ff9cda3860f5304619be6c3da34d3',
101101
)
102102

103103
NINJA_MAC = ArchiveInfo(

0 commit comments

Comments
 (0)