On Sat, Feb 11, 2012 at 5:10 AM, Doug <[email protected]> wrote: > 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. >
I would hope that main apps can't reach inside other apps to access their code! In any case, even if you got an app's bytecode, there's not really a way to take arbitrary bytecode and execute it on the vm. Though I think that you probably meant through an abstraction layer such as AIDL or something.. kris -- 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

