Made Barcode Scanner builds runs clean first to prevent stale resources and build problems related to the state ProGuard leaves the class files in.

git-svn-id: https://zxing.googlecode.com/svn/trunk@1183 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
dswitkin 2010-01-10 14:57:24 +00:00
parent 719ed5b883
commit 30c41e5182

View file

@ -130,8 +130,9 @@ limitations under the License.
<!-- rules -->
<!-- Create the output directories if they don't exist yet. -->
<target name="dirs">
<!-- Create the output directories if they don't exist yet. All builds do a clean first
to prevent stale resources and to make ProGuard happy. -->
<target name="dirs" depends="clean">
<echo>Creating output directories if needed...</echo>
<mkdir dir="${resource-folder}" />
<mkdir dir="${external-libs-folder}" />