I would like to load an entire library into memory on android. What is the easiest way of doing this?
So I would like the entire library to be paged into memory not just mapped would System.load() achieve this? Or would the classes/methods need to be called? Is there a better way of doing this?
If there is no all in one solution, would invoking Classloaders to load the classes page the code for the classes into memory or just map them?