Best way to package a class for use in another app?

Posted by Brad Hein on Stack Overflow See other posts from Stack Overflow or by Brad Hein
Published on 2010-06-02T18:16:31Z Indexed on 2010/06/02 18:24 UTC
Read the original article Hit count: 191

Filed under:
|

I've written an Android app wich various abstract classes that perform useful functions. These functions could be leveraged in other apps.

I want to share a class module with another programmer, but I don't want to share the source code. I would like to share a .class file but I'm not sure how to do the following:

  • Compile an Android .java file into .class
  • What does the receiver of the .class file have to do to use that .class in their project? (using Eclipse environment)

Thank you very much

© Stack Overflow or respective owner

Related posts about java

Related posts about android