Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Old Versions of Android NDK [closed]

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

like image 608
Jenny Kim Avatar asked Aug 23 '13 02:08

Jenny Kim


People also ask

How do I install an older version of NDK?

Install a specific version of the NDKClick the SDK Tools tab. Select the Show Package Details checkbox. Select the NDK (Side by side) checkbox and the checkboxes below it that correspond to the NDK versions you want to install. Android Studio installs all versions of the NDK in the android-sdk /ndk/ directory.

How do I know what version of Android NDK I have?

Go to Tools->SDK Manager (or Files->Settings->Appearance & Behavior->System Settings->Android SDK ). Then select the SDK Tools tab, and check the Show Package Details checkbox. You will see your NDK version.

How do I downgrade NDK?

In order to downgrade your ndk, you will have to pull it from the internet with wget and move it into your Android SDK dir: wget https://dl.google.com/android/repository/android-ndk-r13b-darwin-x86_64.zip. unzip android-ndk-r13b-darwin-x86_64.

Is NDK necessary for Android studio?

The Android Native Development Kit (NDK): a set of tools that allows you to use C and C++ code with Android. CMake: an external build tool that works alongside Gradle to build your native library. You do not need this component if you only plan to use ndk-build.


1 Answers

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

like image 103
Zennichimaro Avatar answered Oct 29 '22 01:10

Zennichimaro