Force overwrites of existing assets

This commit is contained in:
Brad Davis 2018-01-11 08:06:06 -08:00
parent 65794cf142
commit 6e3ce95c3c

View file

@ -60,6 +60,7 @@ android {
copy {
from new File(projectDir, "../../interface/compiledResources")
into outputDir
duplicatesStrategy DuplicatesStrategy.INCLUDE
eachFile { details ->
youngestLastModified = Math.max(youngestLastModified, details.lastModified)
assetList.add(details.path)
@ -70,6 +71,7 @@ android {
copy {
from new File(projectDir, "../../scripts")
into new File(outputDir, "scripts")
duplicatesStrategy DuplicatesStrategy.INCLUDE
eachFile { details->
youngestLastModified = Math.max(youngestLastModified, details.lastModified)
assetList.add("scripts/" + details.path)