respository - not necessarily the directory that contains
AndroidManifest.xml.
+Multiple files can be specified by separating they with ';'.
+
@item antcommand=xxx
Specify an alternate ant command (target) instead of the default
'release'.
# Delete unwanted file...
if 'rm' in build:
- dest = os.path.join(build_dir, build['rm'])
- if os.path.exists(dest):
- os.remove(dest)
+ for part in build['rm'].split(';'):
+ dest = os.path.join(build_dir, part)
+ if os.path.exists(dest):
+ os.remove(dest)
# Fix apostrophes translation files if necessary...
if build.get('fixapos', 'no') == 'yes':