|
|
|
|
|
by pjmlp
2643 days ago
|
|
ART is the Android RunTime, basically the large majority of Android's userspace. Those native libraries are forbidden to use Linux specific features, only these APIs are sancioned. https://developer.android.com/ndk/guides/stable_apis Since Android 7, Google has been claping down NDK users that try to used anything that isn't part of that list. Since Android 8, APKs are only allowed to reach for their own internal filesystem and use SAF for anything else. Something that will be further enforced on Android Q, so no luck trying to peek into /dev, /share and similar. |
|