From c5bc87411e4466bd55685b8aa4ac830a9a509994 Mon Sep 17 00:00:00 2001 From: Mohammed Touban Date: Mon, 17 Jul 2017 16:49:42 +0300 Subject: [PATCH] Update README.md modified include multiple proguard files script --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 8f96a97..c20e943 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,7 @@ android { Instead of declaring each configuration file manually, you could also store them in a seperate directory and include them all at once: ```groovy -FileCollection proGuardFileCollection = files { file('./proguard').listFiles() } -proguardFiles(proGuardFileCollection) + proguardFiles fileTree(dir: "proguard", include: ["*.pro"]).asList().toArray() ``` ### Libraries