summaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2019-10-03 23:37:43 +0200
committerByteHamster <info@bytehamster.com>2019-10-03 23:37:43 +0200
commit611d8c9e453e131beb424969e251393c082daf09 (patch)
tree50c7126978618cbedb4ed9aa181a6bf15e86e3e6 /app/build.gradle
parent1d12f414e4320d5636d40dc9c81660796478f4f7 (diff)
downloadAntennaPod-611d8c9e453e131beb424969e251393c082daf09.zip
Always update about screen commit
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 0fdfd153e..9a2a3b815 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -195,6 +195,7 @@ task filterAbout {
inputs.files files(["src/main/templates/about.html",
"src/main/AndroidManifest.xml"])
outputs.file "src/main/assets/about.html"
+ outputs.upToDateWhen { false }
} doLast {
copy {
from "src/main/templates/about.html"
@@ -212,6 +213,7 @@ task copyTextFiles(type: Copy) {
rename { String fileName ->
fileName + ".txt"
}
+ outputs.upToDateWhen { false }
}
preBuild.dependsOn filterAbout, copyTextFiles