mirror of https://github.com/axmolengine/axmol.git
13 lines
624 B
XML
13 lines
624 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<project name="custom_rules">
|
||
|
<target name="-post-build">
|
||
|
<!-- delete temp files -->
|
||
|
<delete>
|
||
|
<fileset dir="${out.absolute.dir}" includes="build.prop resources.ap_ ${dex.file.name}* ${resource.package.file.name}* ${ant.project.name}-release-unaligned.apk ${ant.project.name}-release-unsigned.apk*"/>
|
||
|
</delete>
|
||
|
<!-- rename final apk file -->
|
||
|
<property name="apk.final.name" value="${out.absolute.dir}/../../../runtime/${ant.project.name}/android/${ant.project.name}" />
|
||
|
<move file="${out.final.file}" tofile="${apk.final.name}.apk" />
|
||
|
</target>
|
||
|
</project>
|