views:

48

answers:

1

I have a shared project that I'd like to split up in Eclipse. It's an android shared library which some packages should just be jar files others need to be smaller shared libraries.

What is the best way to handle this other than manually creating smaller projects?

Also is there a way to create a script to create exported jar files from eclipse if I gave it a project path?

+1  A: 

What about doing a Ant script that generate different JARs?

References for the jar task : Intro tutorial, Jar task, More examples

h3xStream
When you export with Eclipse, you can select the option to generate the ant script. Later on, you simply run the ant script and it will build the jar automatically each time.
Silence