Question

I want to port a program I wrote to android. The program is in c++ on windows and linux. The program uses dll's for a plugin architecture. New plugins can be added to the program by downloading a dll which the program loads from a specific folder. My question is... Is it possible to download dlls built for android to a directory on the sdcard then from native code load and use those dll's

Was it helpful?

Solution

I think not, external storage is mounted with option noexec. You can load libraries from app's private directory.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top