I am developing an Android project in eclipse. I am creating a library project
that is used by a main project
. Main project
uses an external jar
file. I want to add this external jar
file to my library project
and just add the jar file of library project
to the main project
. I have added that jar file in library project but when I compile library project its size is not changed and the external jar file is not embedded in the library project.
I mean I want to combine the library and the external jar into one library that my project can link to.
How can I do that?
Thanks,