Merge "Add an FAQ about key functions."
tree: c9546b0dc17247960f660f42eb979ba52a3e9882
  1. .github/
  2. bootstrap/
  3. build/
  4. docs/
  5. infra/
  6. meta/
  7. ndk/
  8. samples/
  9. scripts/
  10. sources/
  11. tests/
  12. wrap.sh/
  13. .clang-format
  14. .gitignore
  15. Android.mk
  16. checkbuild.py
  17. CleanSpec.mk
  18. CONTRIBUTING.md
  19. do_checkbuild.py
  20. MANIFEST.in
  21. navbar.md
  22. ndk-gdb
  23. ndk-gdb.cmd
  24. ndk-gdb.py
  25. ndk-stack
  26. ndk-stack.cmd
  27. ndk-stack.py
  28. ndk-which
  29. NOTICE
  30. OWNERS
  31. parse_elfnote.py
  32. pylintrc
  33. qa_config.json
  34. README.md
  35. requirements.txt
  36. run_tests.py
  37. setup.py
  38. unittest.cfg
  39. UserReadme.md
README.md

Android Native Development Kit (NDK)

The latest version of this document is available at https://android.googlesource.com/platform/ndk/+/master/README.md.

Note: This document is for developers of the NDK, not developers that use the NDK.

The NDK allows Android application developers to include native code in their Android application packages, compiled as JNI shared libraries.

This page provides an overview of what is contained in the NDK. For information on building or testing the NDK, the roadmap, or other information, see the navigation bar at the top of this page, or the docs directory.

Other Resources

Components

The NDK components can be loosely grouped into host toolchains, target prebuilts, build systems, and support libraries.

For more information, see the Build System Maintainers guide.

Build Systems

While the NDK is primarily a toolchain for building Android code, the package also includes some build system support.

First, $NDK/build/core contains ndk-build. This is the NDK's home grown build system. The entry point for this build system is $NDK/build/ndk-build (or $NDK/build/ndk-build.cmd).

A CMake toolchain file is included at $NDK/build/cmake/android.toolchain.cmake. This is separate from CMake's own support for the NDK.

$NDK/build/tools/make_standalone_toolchain.py is a tool which can create a redistributable toolchain that targets a single Android ABI and API level. As of NDK r19 it is necessary, as the installed toolchain may be invoked directly, but it remains for compatibility.

Since the Android Gradle plugin is responsible for both Java and native code, is not included as part of the NDK.

Support Libraries

sources/android and sources/third_party contain modules that can be used in apps (gtest, cpufeatures, native_app_glue, etc) via $(call import-module,$MODULE) in ndk-build. CMake modules are not yet available.