I have several native libs, and I want to deploy them through an apk package (for example, copy them to the libs folder or to resources). Then I need to install a separate application and download these libraries using:
System.load(path_to_lib);
How can this be done? As far as I understand, I cannot just load libs using the path / data / data / libs _package / lib / native_lib.so for security reasons. Are there any other ways?
Thanks in advance.
source share