これは、「build.xml」から呼び出される私の custom_rules.xml です。
<?xml version="1.0" encoding="UTF-8"?>
<project name="custom_rules">
<xmlproperty file="AndroidManifest.xml" prefix="mymanifest" collapseAttributes="true"/>
<property name="build.dir" value="releases" />
<property name="version.name" value="${mymanifest.manifest.android:versionName}" />
<property name="version.code" value="${mymanifest.manifest.android:versionCode}" />
<property name="out.file" value="${ant.project.name}-${version.name}_${version.code}.apk" />
<target name="-post-build">
<echo>Output filename: ${out.file}</echo>
<copy file="${out.final.file}" tofile="${build.dir}/${out.file}"/>
</target>
私がやりたいことは、antがantリリースで起動された場合にのみ上記を実行することです