From e08a147f3711599fda53e0bd7c69b9460b0bb3dc Mon Sep 17 00:00:00 2001 From: Victor Shcherb Date: Tue, 21 Apr 2020 19:11:08 +0200 Subject: [PATCH] Fix script --- OsmAnd/build.gradle | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/OsmAnd/build.gradle b/OsmAnd/build.gradle index 221b08ba92..6996a45d68 100644 --- a/OsmAnd/build.gradle +++ b/OsmAnd/build.gradle @@ -367,10 +367,21 @@ task copyStyleIcons(type: Sync) { include "**/*.png", "**/*.xml" preserve { include '**/*' - exclude "**/mx_*", "**/mm_*", "**/h_*" + exclude "**/mm_*", "**/h_*" } } +task copyStyleIcons(type: Sync) { + from "../../resources/rendering_styles/drawable-mx/" + into "res/drawable/" + include "**/*.png", "**/*.xml" + preserve { + include '**/*' + exclude "**/mx_*" + } +} + + task copyWidgetIconsXhdpi(type: Sync) { from "res/drawable-xxhdpi/"