From 381f0d753478a42268e099befe10741ef7c668cb Mon Sep 17 00:00:00 2001 From: Ariel Viera Date: Tue, 22 Feb 2022 15:20:56 -0500 Subject: [PATCH] remove duplicate entry in fileLocations --- .../groovy/com/google/gms/googleservices/GoogleServicesTask.java | 1 - 1 file changed, 1 deletion(-) diff --git a/google-services-plugin/src/main/groovy/com/google/gms/googleservices/GoogleServicesTask.java b/google-services-plugin/src/main/groovy/com/google/gms/googleservices/GoogleServicesTask.java index 73c53185..34255a33 100644 --- a/google-services-plugin/src/main/groovy/com/google/gms/googleservices/GoogleServicesTask.java +++ b/google-services-plugin/src/main/groovy/com/google/gms/googleservices/GoogleServicesTask.java @@ -486,7 +486,6 @@ static List getJsonLocations(String buildType, List flavorNames) fileLocations.add("src/" + flavorName); fileLocations.add("src/" + buildType); fileLocations.add("src/" + flavorName + capitalize(buildType)); - fileLocations.add("src/" + buildType); String fileLocation = "src"; for(String flavor : flavorNames) { fileLocation += "/" + flavor;