MobileAndroidGetting Started with the Android NDK

Getting Started with the Android NDK

Developer.com content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More.

The Android NDK (Native Development Kit), now on its seventh major revision, is a bundle of tools, libraries and documentation that can be used to link in native C/C++ libraries into your Android Java projects. It provides you with everything you need to link your own C/C++ libraries to your apps, as well as commonly-used system libraries like libc, libm, OpenGL ES, libz, JNI, and logging libraries for use.

In this tutorial, we explain why the NDK is important, when you should use it, and when you’re better off without it.

Why Use the Android NDK?

There are two main reasons to consider using the Android NDK: performance and porting. For performance, the NDK can provide high-performance operations for your application if it’s truly processor bound. That is, the application algorithms are tapping into all of the device’s processing power within the DalvikVM; this code may see performance benefits from running natively.

But it’s not like just any application would see performance benefits from using the NDK. There is some overhead from making the jump back and forth between the Android Java application and native code, not to mention the fact that using the Android NDK increases the code complexity of your project pretty substantially.

As for porting, you can use the NDK is to leverage existing code you’ve already got in C or C++. Here, using the NDK could simply your application development, allow for shared code with other platforms, and generally help you avoid maintaining parallel codebases in multiple programming languages. This perk is often leveraged with applications that target multiple operating systems using OpenGL ES.

Preliminary Android NDK Considerations

When you’ve decided the Android NDK is worth using for your project, you’ll need to take your target device(s) and development machine OS into consideration before installing and using it. The NDK is not part of the stock Android SDK experience.

For device targeting, the Android NDK generates machine code for ARMv5TE, ARMv7-A, and x86. This provides coverage of all ARM-based Android devices as well as Intel-based devices, such as devices running on Intel Atom processors. However, this does not imply that all devices are supported. For one, the devices must support at least API Level 3. These days, that’s not a particularly big issue (only 0.6% of devices are still only on Level 3, and Google no longer tracks levels below that). That said, Google TV devices do not support the NDK, despite many of them running API Level 12 now. Always test on device hardware to make sure your application behaves as expected.

As for the Android NDK prerequisites for your development machine, you can develop using the NDK on Windows, Mac, and Linux operating systems that support the Android SDK. On Windows, most functionality is available in NDK r7 (unlike previous versions) with one exception: ndk-gdb still requires the use of Cygwin.

Setting Up to Use the Android NDK

Unlike many other Android tools, the Android NDK can’t be installed via the Android SDK Manager. Instead, the Android NDK package needs to be downloaded and installed on your development machine separately.

Begin by downloading the latest version of the NDK for your operating system from the Android site. At the time of this writing, the latest version was Android NDK, Revision 7 (Released November 2011).

After downloading the NDK, uncompress the file and extract the NDK source tree whenever you’re storing your other developer tools. Then add that directory to your path. For example, we placed the NDK directory at d:devtoolsndk.

Compiling NDK Apps

The NDK download comes with several sample apps. These demonstrate the two basic types of NDK usage. The first is a regular Java Android app that uses C code for only certain pieces of application functionality. If you’re familiar with JNI (Java Native Interface), then you’ll be accustomed to this type of scenario. The other way to use the NDK is to create a main Activity class implemented in C. The entire application can be written in C using this method. Compiling both types is no different.

Let’s use two of the sample applications to compile and test your NDK installation.

    1. Import the projects into Eclipse by choosing New -> Android Project.
    2. Pick Create from existing source.
    3. Browse to your NDK directory, find the samples directory, and then choose the bitmap-plasma directory. You probably should rename the project name.
    4. Click the Next button and choose at least API Level 8.
    5. Repeat the above steps for the native-plasma sample app. We’ve used the project names Plasma and NativePlasma.

You may notice in Eclipse that the apps both appear to be built successfully. This is not the case.

  1. Go to the command line and find the project directory for the Plasma sample app. In it, simply type ndk-build. (You did put the NDK directory in your path, right? If not, we recommend doing so now.)
  2. Back in Eclipse, make sure the app is rebuilt by performing a Project, Clean operation.

Repeat these steps for the NativePlasma app.

Now you’re ready to run the two sample apps Plasma and NativePlasma on a device. Although their names are similar, their output is not identical. The NativePlasma app draws a single frame, full window plasma effect. The Plasma app animates a 200px by 200px area with a plasma effect. Your phone or tablet probably contains an ARM processor and so these examples will work.

But what if you try to load the app onto a device with an Intel Atom chip? It won’t work by default. However, you can add x86 architecture to the build by either editing the Application.mk file and adding x86 at the end of the APP_ABI line, or building with the “ndk-build APP_ABI=all” command.

Want to run something more interesting? Load up and compile the project found in the san-angeles samples directory. It’s a port of a small award-winning demo done several years back. Here’s a video of it running on an ASUS Eee Pad Transformer Prime:

Required Android NDK Manifest Elements

Applications that leverage the NDK must declare the appropriate manifest elements, just like a regular Android app. If your app is using the OpenGL ES libraries, you should declare the appropriate android:minSdkVersion attribute associated with OpenGL ES 1.1 (API Level 4) or OpenGL ES 2.0 (API Level 5). If your application uses NDK APIs where similar APIs in Java would require permissions, they’ll still require permissions. The same goes for feature specification in the manifest file. However, there are no explicit manifest settings for using the NDK. Users of an application that uses the NDK need not know that it’s being used.

Where to Find Android NDK Documentation

Most of the documentation for the Android NDK package is not available online. Instead, it is found in the ndk directory under docs. That said, the main document file called documentation.html is located at the root of the ndk directory. This document covers a variety of different topics, from installing the NDK (you’ve done that) to details of the Android and Application make files, and which APIs are stable and available for each Android API level. For example, EGL and OpenSL are available in API Level 9 while OpenMAX AL and OpenSL ES are available in API Level 14.

We have only scratched the surface here on what you can do with the Android NDK. For more information, we strongly recommend that you check out the Android NDK documentation that is available on the Android Developers website and the documentation in the NDK download. There you will find the latest information about working with the NDK as well as sample applications you can peruse.

Conclusion

The Android NDK is a powerful feature of the Android platform that allows you to embed native C and C++ code components into your Android applications. The NDK can help developers leverage their existing native libraries in their Android applications, as well as allow developers to handle high-performance CPU-intensive operations in native code where performance may be an issue.

Whether or not to use the Android NDK as part of your application design is an architectural decision, as the NDK is not for every application or device but it can be extremely useful for some. Even if you aren’t convinced the Android NDK is right for your current project, you should know enough about it to evaluate it on a project-by-project basis.

About the Authors

Shane Conder Shane Conder and Lauren DarceyContributing Editors, Mobile Development–have coauthored two books on Android development: an in-depth programming book entitled Android Wireless Application Development (ISBN-13: 978-0-321-62709-4) and Sams Teach Yourself Android Application Development in 24 Hours (ISBN-13: 978-0-321-67335-0). When not writing, they spend their time developing mobile software at their company and providing consulting services.

Email        |        Blog        |        Twitter

Lauren Darcey

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Latest Posts

Related Stories