I need to distribute an application (player), which depends on my own library created for this version of ARM and the extension (Tegra, Neon). This native library is quite large, so I can not distribute all its versions in one universal package. Therefore, I decided to split the application into one small universal .apk and more specialized .apks - plugins without any action.
How can I access a custom proprietary shared library in a pluggable application from the main host application? Can I just use
System.loadLibrary("path_to_library");
If so, how can I get the path to this library?
How to solve this problem if this is not possible?
source share