From e9fc02bd35ee2cf320b0bcecd02c8595d2945f67 Mon Sep 17 00:00:00 2001 From: ByteHamster Date: Sun, 26 Jul 2020 09:58:59 +0200 Subject: [PATCH] Removed upToDateWhen of copyLicense task This was originally added because the task was also responsible for copying the current git commit hash to the "about" screen. The commit was later moved to a `buildConfigField`, so this can now be removed again. --- app/build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index f07766ff1..fa347aac6 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -206,7 +206,6 @@ task copyLicense(type: Copy) { rename { String fileName -> fileName + ".txt" } - outputs.upToDateWhen { false } } preBuild.dependsOn copyLicense