summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2019-10-03 23:47:48 +0200
committerByteHamster <info@bytehamster.com>2019-10-03 23:47:53 +0200
commit073ddced41b92d619d74b35d86731c5c4fb8a393 (patch)
tree694496bb94607a82c43c42797e0755a3d177688d /app
parent611d8c9e453e131beb424969e251393c082daf09 (diff)
downloadAntennaPod-073ddced41b92d619d74b35d86731c5c4fb8a393.zip
Little cleanup of filterAbout task
Diffstat (limited to 'app')
-rw-r--r--app/build.gradle21
1 files changed, 7 insertions, 14 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 9a2a3b815..34a384f88 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -189,21 +189,14 @@ if (project.hasProperty("antennaPodServiceAccountEmail")) {
}
}
-// about.html is templatized so that we can automatically insert
-// our version string in to it at build time.
-task filterAbout {
- inputs.files files(["src/main/templates/about.html",
- "src/main/AndroidManifest.xml"])
- outputs.file "src/main/assets/about.html"
+task filterAbout(type: Copy) {
+ from "src/main/templates/about.html"
+ into "src/main/assets"
+ filter(ReplaceTokens, tokens: [
+ versionname: android.defaultConfig.versionName,
+ commit : "git rev-parse --short HEAD".execute().text,
+ year : new Date().format('yyyy')])
outputs.upToDateWhen { false }
-} doLast {
- copy {
- from "src/main/templates/about.html"
- into "src/main/assets"
- filter(ReplaceTokens, tokens: [versionname: android.defaultConfig.versionName,
- commit : "git rev-parse --short HEAD".execute().text,
- year : new Date().format('yyyy')])
- }
}
task copyTextFiles(type: Copy) {