incorporate git rev number in name of debug .apk

This commit is contained in:
Eric House 2015-07-25 20:54:07 -07:00
parent 7cc58de6e5
commit 82f1406df7

View file

@ -110,4 +110,15 @@
</exec>
</target>
<target name="-post-build" >
<if condition="${build.is.packaging.debug}">
<then>
<exec executable="git" outputproperty="git-rev" >
<arg value="describe" />
</exec>
<copy file="bin/XWords4-debug.apk" tofile="XWords4-debug-${git-rev}.apk"/>
</then>
</if>
</target>
</project>