On Wed, Feb 1, 2012 at 6:16 PM, BT <bunglestwan...@gmail.com> wrote:
> How about downloading "FeatureX.so" to the Downloads directory,
> calling dlopen("featurex.so"), then calling the additional library
> functions?

That would be a question for the android-ndk Google Group.

AFAIK, though, this is not supported. Not to mention that it is highly
insecure, because then anyone can replace your .so with one laden with
malware, and your app will happily execute it, with the malware
inheriting all your permissions.

You can certainly have independent APKs, with their own independent
NDK libraries, that communicate through normal Android IPC mechanisms:
services (commands or binding), broadcasts, etc.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

Android 4.0 Programming Books: http://commonsware.com/books

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to