Slide 11
Slide 11 text
What’s an NDK app?
It’s an Android application that uses
native libraries.
!
Libraries are .so files, usually found
inside libs/CPU_ABI/.
!
These libs can be generated from
native sources inside jni folder, game
engines, or required by other 3rd party
libraries.
!
There is no 100% native application.
Even an application purely written in
C/C++, using native_app_glue.h, will be
executed in the context of the Dalvik
Virtual Machine.
!