On Thu, Feb 9, 2012 at 4:35 PM, New Developer <[email protected]> wrote:
> For further insight, under windows I used a code within the .exe which said
> which modules were available
> then based on the code it checked to see if those .dll were present.  If so,
> then they were loaded and added
> items to the main menu, and thus added functionality to the overall .exe
>
> This is the same purpose I'm trying to now achieve but with android.

This is generally frowned upon as being insecure (e.g., malware adds
or replaces one of your DLLs, and now magically your app is infected).

You are welcome to experiment with stuff like DexClassLoader, but
don't expect a ton of examples and such. Also, don't expect to be able
to ship your app on certain markets -- I would expect the Amazon
Appstore to have serious concerns about an app using this technique.

There are plenty of integration and plug-in capabilities available to
Android developers, but they tend to be application-to-application,
not libraries.

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

Android Training...At Your Office: http://commonsware.com/training

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

Reply via email to