I have one Android Project. I created Junit test project for the same. I can build the both projects using ANT script independently. Now, I want to write the script which will call this ANT scripts and build the project. How I can do it ?
I am currently using Windows-Xp, eclipse- Galileo, jdk – 6
Use the ant task in ant.
You can then write a “binding” build.xml file which calls all of the other “build.xml” files with the appropriate tasks (in whatever appropriate order).
An example (from the manual)
Which would then call the “compile” target in the
subproject/subbuild.xmlfile.