The title might seem confusing (although accurate). Let me explain it in more words:
I have an android Library project, lets call it ProjectA. I also have second android Library project, lets call it ProjectB. The ProjectB and ProjectA are in the same workspace, and ProjectB is referencing ProjectA in it's libraries list (project properties). So ProjectB is using ProjectA.
Now what I want to accomplish is to get a simple jar of the library - ProjectB, and include this jar as external library in my yet another android project (android application this time).
However... when I compile ProjectB, the jar size is way too small (the ProjectA's jar is over 300KB, yet ProjectB's jar is only 14KB), so I'm sure it does not contain ProjectA's in the jar file I find inside bin folder (of the ProjectA). To do a quick math, ProjectB's jar should be ~300KB bigger.
So to repeat, I'd like to have everything the library needs, packed in one jar file (jar file of ProjectB's), so that when I import it into libs of an Android Application I can use it.
Any help here from expierienced Android dev?