I made an android project using eclipse. It looks like:
src/ ActivityMain.java lib/ Square.java Circle.java I want to export only the /lib package really as a jar (don't want to include stuff at the top level like ActivityMain.java). Are there any special rules I need to be aware of before jar-ing this for use in another android project, or I should be all set?
Thanks