Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

can android load dll's from sdcard in native mode

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

like image 647
roguetreasure Avatar asked Jul 03 '10 07:07

roguetreasure


1 Answers

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

like image 84
ognian Avatar answered Sep 28 '22 00:09

ognian