Difference between static and shared libraries in Android’s NDK?
The term shared library is not a perfect fit regarding Android’s NDK, because in many cases the .so libraries aren’t actually shared between applications. It’s better to classify the libraries that the NDK builds as static and dynamic. Every Android application is a Java application, and the only entry point for the NDK code is … Read more