mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 12:02:19 +02:00
Force overwrites of existing assets
This commit is contained in:
parent
65794cf142
commit
6e3ce95c3c
1 changed files with 2 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue