After updating my sdk tools, I cannot build my project from the command line.
I used the Project Management steps from the command line on the Android developer site to create using ANT. My project refers to another library project, so I used:
android update lib-project
update default.properties , local.properties and build.xml and ant.bat build.xml to build .apk . This worked without any problems for some time.
I recently upgraded my sdk tools to version 10, platform tools rev 3. The first thing I came across was that the --library flag --library missing. I noticed that the “update project” now has the --library , so I guess now I have to use this command to update projects that reference libraries.
The problem is that although the default.properties , local.properties and build.xml files look good for the library and the application, running ant.bat build.xml in the application that references the library project now fails with "Could not resolve library path, ”followed by the path that he is trying to resolve, and that’s really the right path.
Even if I do not use the “update project” and do not return to the default.properties , local.properties and build.xml files that used to work for ant.bat build.xml , it still fails with the same error as the update sdk.
Any advice would be greatly appreciated. Thank you Scott
Scott
source share