These 4 files (build.xml, local.properties, projects.properties, proguard.cfg) are automatically generated at startup:
Android update project - name TestApp --target 10 -p.
Updated project.properties
Updated by local.properties
Added file. /build.xml
Updated file. /proguard.cfg
But I want the "auto-gen" build.xml to also include the following "pre-compile" code, is there any way to do this? Is there any “include” or “template” file that might include this?
<target name="config"> <property name="config-target-path" value="${source.dir}/com/androidengineer/antbuild"/> <copy file="config/Config.java" todir="${config-target-path}" overwrite="true" encoding="utf-8"> <filterset> <filter token="CONFIG.LOGGING" value="${config.logging}"/> </filterset> </copy> </target>
android build ant
xbeta Dec 16 2018-11-11T00: 00Z
source share