How do I reference external jar files in a common directory (not libs) to build android project using ant?

In the sdk, there are ant files under tools/ant. In main_rules.xml, you can find the following code section: <!– Directory for the third party java libraries –> <property name=”jar.libs.dir” value=”libs” /> <property name=”jar.libs.absolute.dir” location=”${jar.libs.dir}” /> <!– create a path with all the jar files, from the main project and the libraries –> <path id=”jar.libs.ref”> <fileset … Read more