To put an hand to the cowboy programmers that were linking to system libraries not part of that list, starting with Android 7, they will be terminated if they try to do so.
None of the stable NDK APIs are GNU/Linux specific and the POSIX layer isn't fully compliant with the standard, many APIs like e.g. SYS V IPC are missing.
I'm playing with it at the moment. It might seem a bit frustrating first, with all those JNI naming conventions and getting it to integrate with Eclipse, but hopefully it's performance will make up for it.
> Starting in Android 7.0, the system prevents apps from dynamically linking against non-NDK libraries, which may cause your app to crash. This change in behavior aims to create a consistent app experience across platform updates and different devices. Even though your code might not be linking against private libraries, it's possible that a third-party static library in your app could be doing so. Therefore, all developers should check to make sure that their apps do not crash on devices running Android 7.0. If your app uses native code, you should only be using public NDK APIs.
https://developer.android.com/ndk/guides/stable_apis.html
Here are the documentation entries related to clamping down unauthorized use of other on-device libraries or Linux Syscalls.
https://android-developers.googleblog.com/2016/06/android-ch...
https://android-developers.googleblog.com/2016/06/improving-...
https://android-developers.googleblog.com/2017/07/seccomp-fi...
https://developer.android.com/about/versions/nougat/android-...
https://developer.android.com/about/versions/oreo/android-8....
Small correction, it is actually Android 7.0, not 6.0
reply