22

Any mirror sites that hold old versions of Android NDK?

I went to

Android NDK Official Site

but it only contains the link to the latest version.

Old versions are described there, but no link is provided

Jenny Kim
  • 1,505
  • 2
  • 16
  • 25
  • 2
    This question is **not off-topic**. It's a duplicate of http://stackoverflow.com/questions/15766957/where-to-find-old-versions-of-android-ndk and http://stackoverflow.com/questions/6849981/where-do-i-find-old-versions-of-ndk – Alex Cohn Jan 05 '14 at 12:20

1 Answers1

24

copy the download link to the latest version of the ndk of your platform and change the version number according to the Revision information provided at the end of the page.

For example, the link to the latest version of NDK for Windows x64:

http://dl.google.com/android/ndk/android-ndk-r9-windows-x86_64.zip

to download ndk r8e, just change the filename from android-ndk-r9-windows-x86_64.zip to android-ndk-r8e-windows-x86_64.zip

As site note, this site holds the copy to the last previous stable release of the NDK:

http://mirror.sito.ir/Android/Android%20NDK/

thus, to get version other than r8e, you have to use the URL constructing method

EDIT: Updated official older-releases NDK site:

https://developer.android.com/ndk/downloads/older_releases.html

Zennichimaro
  • 5,236
  • 6
  • 54
  • 78
  • 5
    NDK r8e is the first NDK with 32bit and 64bit releases. The prior ones were all 32bit and didn't have any suffix, so r8b would be: https://dl.google.com/android/ndk/android-ndk-r8b-windows.zip – foo64 Aug 23 '13 at 16:38
  • and 9b would be https://dl.google.com/android/ndk/android-ndk-r9b-windows-x86_64.zip – Marco Luglio Dec 07 '13 at 12:25
  • 7
    The `mirror.sito.ir` site seems to be only accessible from Iran. – Jan Hudec Jan 09 '14 at 08:29
  • I found manual URL manipulation to be too difficult ( trying to get from android-ndk-r10d-darwin-x86.bin to android-ndk32-r10b-darwin-x86.tar.bz2 ), and this answer worked instead: http://stackoverflow.com/a/25040676/431296 – Stan Kurdziel Feb 05 '15 at 20:33
  • 1
    updated official URL for NDK Archives: https://developer.android.com/ndk/downloads/older_releases.html – Yoav Feuerstein Oct 25 '17 at 11:30