Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login



sort by: page size:

Do so at your own peril, they aren't part of the public API.

"NDK C library"

https://developer.android.com/ndk/guides/stable_apis#c_libra...

"Improving Stability with Private C/C++ Symbol Restrictions in Android N"

https://android-developers.googleblog.com/2016/06/improving-...

"Android changes for NDK developers"

https://android-developers.googleblog.com/2016/06/android-ch...

Termux developers also think they could do whatever they felt like on Android, guess what, they can't.


Good luck, this is the set of allowed native API on Android.

https://developer.android.com/ndk/guides/libs.html

As of Android 7, if the application tries to link to system libraries not part of that list, it will just get killed.

https://android-developers.googleblog.com/2016/06/improving-...


Which isn't part of the public APIs,

https://developer.android.com/ndk/guides/stable_apis


> Prevent the NDK users that ignored the documentation and linked to non official platform libraries to keep doing that.

I'm sorry, where in the article did you see that? I've looked twice and can't find it.


Doesn't look like it, from official NDK documentation.

https://developer.android.com/ndk/guides/stable_apis

And even if you try to be clever,

"Improving Stability with Private C/C++ Symbol Restrictions in Android N"

https://android-developers.googleblog.com/2016/06/improving-...

"Namespaces for Native Libraries"

https://source.android.com/docs/core/permissions/namespaces_...


Also Android has very few Linux exposed to application developers, Google could change it for something else and only OEMs would be pissed off.

Only these APIs are allowed to be used.

https://developer.android.com/ndk/guides/libs.html


> It is prevented by killing any process that makes API calls not part of the official set of public NDK APIs and file locations.

This is not something Android does.


Have you ever used the NDK?

Android apps are only allowed to link to these specific set of libraries.

https://developer.android.com/ndk/guides/stable_apis.html

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.

https://developer.android.com/about/versions/nougat/android-...

The only form of binaries allowed on a standard Android device are shared objects.

The Native Activity is actually just the native method calls of https://developer.android.com/reference/android/app/NativeAc... that loads a shared object with a predefined name.

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.

http://www.cs.columbia.edu/~vatlidak/resources/POSIXmagazine...

https://roxanageambasu.github.io/publications/eurosys2016pos...

Rooted devices don't count, as that is not what people get on the store when they buy an Android device.



Android began restricting what APIs you could use in your app with Android 9: https://developer.android.com/guide/app-compatibility/restri...

Similarly, what is accessible from the NDK is limited: https://developer.android.com/ndk/guides/stable_apis


iOS doesn't use Linux and on Android userspace doesn't actually see it.

https://developer.android.com/ndk/guides/stable_apis

So it is meaningless.


NDK http://developer.android.com/sdk/ndk/index.html

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.


Yes,

http://arstechnica.com/security/2016/09/linux-kernel-securit...

This is probably the only reason I can somehow understand Google's draconian approach to the NDK APIs, versus what iOS and UWP allow for.


So how does it work around the missing APIs not described here?

https://developer.android.com/ndk/guides/stable_apis

Given the changes started with Android 7 to block access to everything else?

In fact, https://wiki.termux.com/wiki/Differences_from_Linux


Where is POSIX listed here?

https://developer.android.com/ndk/guides/stable_apis

> 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.

Taken from https://developer.android.com/about/versions/nougat/android-...



Android officially does not support Linux APIs for userspace.

https://developer.android.com/ndk/guides/stable_apis


Looks quite nice.

Since it is also from Google, even though not officially, maybe the Android NDK team could learn a few things about C++ code quality.

Ion's code looks so much nicer than any these APIs

https://developer.android.com/ndk/reference/index.html


Given the lack of the issue being closed I guess they didn't backport the Android NDK patch yet :(.

https://github.com/openssl/openssl/pull/13694

next

Legal | privacy