-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document NDK upgrade process #112885
base: main
Are you sure you want to change the base?
Document NDK upgrade process #112885
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot reviewed 1 out of 1 changed files in this pull request and generated 1 comment.
### 1. Verify the New NDK Version Locally | ||
- Download the new NDK version. | ||
- Test the local build using the new NDK by building a sample Android app. | ||
- Ensure **AOT** and **AOT_WITH_LIBRARY_FILES** are enabled in the build. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The phrase 'Ensure AOT and AOT_WITH_LIBRARY_FILES are enabled in the build' could be clearer if 'AOT' is defined. Consider specifying what 'AOT' stands for.
Copilot is powered by AI, so mistakes are possible. Review output carefully before use.
@@ -22,7 +22,7 @@ Android SDK and NDK can be automatically installed via the following script: | |||
#!/usr/bin/env bash | |||
set -e | |||
|
|||
NDK_VER=r23c | |||
NDK_VER=r27c |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we update our codespaces container definition? (I can do it, just want to make sure its the right thing to do)
runtime/.devcontainer/android/Dockerfile
Line 31 in 2a19c9d
ENV NDK_VER=r23c |
The PR documents the process of upgrading the NDK on runtime CI.