On Mon, Jul 12, 2010 at 5:16 AM, deg <[email protected]> wrote: > 2) The key reason I've divided the project into a library and main app > is that we need to ship the library portion to 3rd-party developers. > But, it looks like there is no way to ship an Android library, except > as as source files. How can we ship an Android component to other > developers in a binary form? (Source shipments are unacceptable, > because of management security concerns).
FWIW, you could try converting it into a parcel: http://andparcel.com This is still a work-in-progress -- for example, I have some Windows-related bugs to work on tomorrow for the parcel command-line program. However, it allows you to create reusable components where your Java code can be shipped in binary form. Resources still have to be shipped as "source", though, as that is unavoidable. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android App Developer 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 [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

