From 53032da478ffea46b5f44b255e1e303f302e15aa Mon Sep 17 00:00:00 2001 From: Victor Shcherb Date: Tue, 21 Apr 2020 17:02:25 +0200 Subject: [PATCH] Fix compilation --- OsmAnd/build.gradle | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/OsmAnd/build.gradle b/OsmAnd/build.gradle index 0b264c78d0..5a2212e790 100644 --- a/OsmAnd/build.gradle +++ b/OsmAnd/build.gradle @@ -362,25 +362,26 @@ task copyPoiCategiry(type: Copy) { task copyStyleIcons(type: Copy) { from "../../resources/rendering_styles/style-icons/" into "res/" - includes ["**/*.png", "**/*.xml"] + include "**/*.png", "**/*.xml" } + task copyWidgetIconsXhdpi(type: Copy) { from "res/drawable-xxhdpi/" - into "res/drawable-large-hxdpi/" - includes ["**/widget_*.png", "**/widget_*.xml", "**/map_*.xml", "**/map_*.png"] + into "res/drawable-large-xhdpi/" + include "**/widget_*.png", "**/widget_*.xml", "**/map_*.xml", "**/map_*.png" } task copyWidgetIconsHdpi(type: Copy) { from "res/drawable-xhdpi/" into "res/drawable-large-hdpi/" - includes ["**/widget_*.png", "**/widget_*.xml", "**/map_*.xml", "**/map_*.png"] + include "**/widget_*.png", "**/widget_*.xml", "**/map_*.xml", "**/map_*.png" } task copyWidgetIcons(type: Copy) { from "res/drawable-hdpi/" into "res/drawable-large/" - includes ["**/widget_*.png", "**/widget_*.xml", "**/map_*.xml", "**/map_*.png"] + include "**/widget_*.png", "**/widget_*.xml", "**/map_*.xml", "**/map_*.png" } task collectExternalResources {