On Feb 9, 1: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
How big are your libraries that you are trying to share? If they are not very big, I would just include them directly in every app you publish. Android library projects will help you with this. There is really no reason not to do this unless you absolutely need all your apps to live on the same device and share some huge common library. In that case, you could have a separate app download which contains the shared library, and the main apps could reach inside it to access the code. But that is ugly and difficult and you really don't want to do that. Doug -- 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

