Changed the core build file to run clean before building each time, which is necessar...
[zxing.git] / core / build.xml
index c5cd834..e2df078 100644 (file)
     </jar>
   </target>
 
-  <target name="build">
+  <target name="build" depends="clean">
     <antcall target="compile">
       <param name="generate-debug" value="true"/>
     </antcall>
   </target>
 
-  <target name="build-no-debug">
+  <target name="build-no-debug" depends="clean">
     <antcall target="compile">
       <param name="generate-debug" value="false"/>
     </antcall>