I have two Android projects, one shared library and an application. Now I want to compile the library dependent application. In Eclipse, it works very well. After that, I upload it via git to my repository and run Jenkins to create both projects.
My problem is that an error occurs: "sdk / android-sdk-linux / tools / ant / build.xml: 440: ../ shared-lib resolves the path without the project.properties file for the project." This is clear because jobs are stored differently in Jenkins than in Eclipse.
Another problem is that Eclipse compiled shared access to ".jar" and Ant compiled it to "classes.jar" (named in sdk / android-sdk-linux / tools / ant / build.xml).
source
share