I have an Android application project A, which depends on the project of the Android B library. When I import both projects into Eclipse, I noticed Eclipse Builder (possibly due to the ADT plugin), which compiles the library project and is built as b.jar and saved inside the bin\ folder of project B. It is referenced as b.jar in the classpath A.
But, building it with ant, the ant debug command, the B library project will compile as classes.jar .
Is there a way to rename this file as .jar? I tried to rename it to the build.xml SDK, but then project A does not seem to resolve the classes defined in B. Furthermore, the test project for B does not work, since the Android dex compiler is trying to find the classes.jar file inside in the bin\ folder library project.
Thanks,
source share