An Android project with native components contains a set of additional directories and files.
JNI: This directory contains the source code of the native component and the Android.mk build file that describes how the native component was built.
The Android NDK build system takes this directory as the NDK project directory and wants to find it in the project root directory.
Libs: The directory was created during the build of the Android NDK build system.
It contains a separate subdirectory for the specified target machine architecture, such as Arm's Armeabi. The directory is included in the APK file during the packaging process.
OBJ: This is an intermediate directory where the source code is compiled and the target files are saved in that directory. It is a good idea for developers not to access this directory.
The most important component of the Android NDK project is the Android.mk build file, which describes the native components. Understanding the build system is key to mastering the Android NDK and all its components.
Android NDK Project structure (observed in eclipse environment)