我有一个标准的 android 生成的构建脚本。我的custom_rules.xml
构建脚本。
<project>
<target name="-minify" >
// More code here
</target>
<target name="-modify-index-html" >
// More code here
</target>
<target name="-post-compile" depends="-minify"/>
<target name="-post-package" depends="-modify-index-html"/>
</project>
问题是我不想要目标-minify
并-modify-index-html
在运行debug
构建时运行。事实上,它们必须仅在运行release
目标时运行。