In my current code till android 6 (API-23) i was able to open libjavacore.so
libcrypto.so
and libwebviewchromium.so
using dlopen()
function.
but in Android N access of private library are restricted by Google. So any one can help me how to load these libraries.
Your app directly accesses private platform libraries. You should update your app to include its own copy of those libraries or use the public NDK APIs.
How to create copy of those library?