[android] Fixed clean task.

This commit is contained in:
Dmitry Yunitsky 2015-11-18 15:32:08 +03:00
parent 303b925450
commit 9a550428e5

View file

@ -337,7 +337,9 @@ def unalignedFonts = "${propObbFontsOutput}.unaligned"
def unalignedWorlds = "${propObbWorldsOutput}.unaligned"
task obbClean(type: Delete) << {
delete propObbFontsOutput, propObbWorldsOutput, unalignedFonts, unalignedWorlds
[propObbFontsOutput, propObbWorldsOutput, unalignedFonts, unalignedWorlds].each { file ->
delete file
}
}
task obbGenerate() {