Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Android Native Development Kit Cookbook

You're reading from   Android Native Development Kit Cookbook Create Android apps using Native C/C++ with the expert guidance contained in this cookbook. From basic routines to advanced multimedia development, it helps you harness the full power of Android NDK.

Arrow left icon
Product type Paperback
Published in Mar 2013
Publisher Packt
ISBN-13 9781849691505
Length 346 pages
Edition 1st Edition
Arrow right icon
Author (1):
Arrow left icon
Liu Feipeng Liu Feipeng
Author Profile Icon Liu Feipeng
Liu Feipeng
Arrow right icon
View More author details
Toc

Table of Contents (16) Chapters Close

Android Native Development Kit Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Hello NDK 2. Java Native Interface FREE CHAPTER 3. Build and Debug NDK Applications 4. Android NDK OpenGL ES API 5. Android Native Application API 6. Android NDK Multithreading 7. Other Android NDK API 8. Porting and Using the Existing Libraries with Android NDK 9. Porting an Existing Application to Android with NDK Index

Updating Android NDK


When there is a new release of NDK, we may want to update NDK in order to take advantage of the new features or bug fixes with the new release. This recipe talks about how to update Android NDK in Windows, Ubuntu Linux, and Mac OS.

Getting ready

Please read the previous recipes in this chapter, depending on the platform of your choice.

How to do it…

In Windows, follow these instructions to update Android NDK:

  1. Go to http://developer.android.com/tools/sdk/ndk/index.html to download the latest version of Android NDK. Unzip the downloaded file.

  2. Open Cygwin.bat under the cygwin root directory. The content should be similar to the following code snippet, if you have previously configured NDK on the system:

    @echo off
    set IS_UNIX=
    set JAVA_HOME=<JDK path>
    set PATH=<SDK path>\tools;<NDK path>
    set ANDROID_NDK_ROOT=/cygdrive/<NDK path>
    C:
    chdir C:\cygwin\bin
    bash --login -i
  3. Update <NDK path> from the old NDK path to the newly downloaded and decompressed location.

In Ubuntu Linux, follow these instructions to update Android NDK:

  1. Download the latest version of Android NDK from http://developer.android.com/tools/sdk/ndk/index.html, then extract the downloaded file.

  2. If we have followed the Setting up an Android NDK development environment in Ubuntu Linux recipe, the following content should appear at the end of ~/.bashrc:

    export ANDROID_SDK=<path to Android SDK directory>
    export ANDROID_NDK=<path to Android NDK directory>
    export PATH=$PATH:$ANDROID_SDK/tools:$ANDROID_SDK/platform-tools:$ANDROID_NDK
  3. Update the ANDROID_NDK path to the newly downloaded and extracted Android NDK folder.

In Mac OS, the steps are almost identical to Ubuntu Linux, except that we need to append the path to ~/.profile instead of ~/.bashrc.

How it works…

NDK installation is completed by simply downloading and extracting the NDK file, and configuring the path properly. Therefore, updating NDK is as simple as updating the configured path to the new NDK folder.

There's more…

Sometimes, updating NDK requires updating SDK first. Since this book focuses on Android NDK, explaining how to update SDK is beyond the scope of this book. You can refer to the Android developer website at http://developer.android.com/sdk/index.html, for details on how to do it.

At times, we may feel the need to use an old version of NDK to build certain applications because of compatibility issues. Therefore, it may be useful to keep multiple versions of Android NDK and switch between them by changing the path or simply using the full path to refer to a specific version of NDK.

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image