Some articles on the web tell me that System.loadLibrary() will load files in /data/data/{app package} directory. I wonder if this varies on each vendor implementation or fixed ?
Some articles on the web tell me that System.loadLibrary() will load files in /data/data/{app
Share
It is ultimately up to the vendor to define the filesystem / filesystem layout. So it might be in a different place. If there is no customized definition then the libraries will be in
/data/data/your.package.name/lib.In case it is in a different directory then
System.loadLibrarywill know that and load the library from that place.