There isn't really a systematic way to add a library to the system in the same way that you can install a DLL on most systems.
Instead, in Android, you can expose certain API hooks through AIDL, which might be what you want. It's almost certain that you don't want to add a library to the system, because then you'll have to distribute your own ROM: which nobody else will have. Kris On Sun, Jan 12, 2014 at 2:36 PM, smoogli <[email protected]> wrote: > I'm looking for instructions on how to add a library to the system. > e.g., my library contains APIs that will be used by other apps. so it > should be available on the device itself, and not within the app's APK > files. > > thanks! > > -- > 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 > --- > You received this message because you are subscribed to the Google Groups > "Android Developers" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > -- 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 --- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

