From f7c7fe2595bc8401133ca009f452cdd7dff51e78 Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Wed, 17 Jun 2020 16:31:49 +0200 Subject: [PATCH] Improved generateContactsXml task in gradle --- app/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/app/build.gradle b/app/build.gradle index 890640584..a9e4c5120 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -177,6 +177,7 @@ if (firebaseEnabled()) { task generateContactsXml(type: Copy) { from 'contacts.xml' into "src/main/res/xml/" + outputs.upToDateWhen { file('src/main/res/xml/contacts.xml').exists() } filter { line -> line .replaceAll('%%AUTO_GENERATED%%', 'This file has been automatically generated, do not edit or commit !')