I\'m trying to build an Android project that has some dependencies. The jar files are in the lib/ directory. I can build the project by adding those jar file to my classpa
Jay K's answer was right at the time of writing, but now the SDK has changed, and here is the new way to do it:
Add the following line to ant.properties:
ant.properties
jar.libs.dir=lib
Tested, works where external.libs.dir does not work. That changed in December 2010 and then again in October 2011.