You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to download the latest one automatically with .
#!/bin/bash# Get the latest release tag from the remote repository
latest_tag=$(git ls-remote --tags https://github.com/android/ndk.git | awk -F'/''{print $NF}'| sort -V | tail -n1)# Store the tag in the variable
ANDROIDNDKVERSION=$latest_tag# Print the variable to verifyecho"The latest release tag is: $ANDROIDNDKVERSION"
DanAlbert
changed the title
[BUG] Please make the name of release/tags the same as the file name.
[FR] make RC-status of releases a real part of the NDK
Feb 12, 2025
Description
I need to download the latest one automatically with .
https://github.com/android/ndk/releases/tag/r28-rc2
This correlates to https://dl.google.com/android/repository/android-ndk-r28-beta3-linux.zip not https://dl.google.com/android/repository/android-ndk-r28-rc2-linux.zip
while
https://github.com/android/ndk/releases/tag/r28-beta1
is the name as its download file name.
I am using a supported NDK
Affected versions
r28
The text was updated successfully, but these errors were encountered: