To use prebuild.xml in Tamino Mobile Studio

Hi. Tamino Mobile Studio relies heavily in the Ant tool, which is just fine. So it uses much build.xml files.

It has a mechanism that allows you to execute your own Ant targets before and after the build. E.g. if you create a “prebuild.xml” file, it should be invoked by the Studio before the build begins (e.g. to compile & pack external classes)

However, I think there is a bug that prevents prebuild.xml for being executed, but it is easy to fix:
- Edit the file $TMStudioDir\tools\codegen\scripts\build.xml
- In the <target name=“prebuild” …>, change the if=“build.custom” by if=“build.prebuild”

That’s all. Cheers