Fix compilation
This commit is contained in:
parent
67eb1cfc8d
commit
53032da478
1 changed files with 6 additions and 5 deletions
|
@ -362,25 +362,26 @@ task copyPoiCategiry(type: Copy) {
|
||||||
task copyStyleIcons(type: Copy) {
|
task copyStyleIcons(type: Copy) {
|
||||||
from "../../resources/rendering_styles/style-icons/"
|
from "../../resources/rendering_styles/style-icons/"
|
||||||
into "res/"
|
into "res/"
|
||||||
includes ["**/*.png", "**/*.xml"]
|
include "**/*.png", "**/*.xml"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
task copyWidgetIconsXhdpi(type: Copy) {
|
task copyWidgetIconsXhdpi(type: Copy) {
|
||||||
from "res/drawable-xxhdpi/"
|
from "res/drawable-xxhdpi/"
|
||||||
into "res/drawable-large-hxdpi/"
|
into "res/drawable-large-xhdpi/"
|
||||||
includes ["**/widget_*.png", "**/widget_*.xml", "**/map_*.xml", "**/map_*.png"]
|
include "**/widget_*.png", "**/widget_*.xml", "**/map_*.xml", "**/map_*.png"
|
||||||
}
|
}
|
||||||
|
|
||||||
task copyWidgetIconsHdpi(type: Copy) {
|
task copyWidgetIconsHdpi(type: Copy) {
|
||||||
from "res/drawable-xhdpi/"
|
from "res/drawable-xhdpi/"
|
||||||
into "res/drawable-large-hdpi/"
|
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) {
|
task copyWidgetIcons(type: Copy) {
|
||||||
from "res/drawable-hdpi/"
|
from "res/drawable-hdpi/"
|
||||||
into "res/drawable-large/"
|
into "res/drawable-large/"
|
||||||
includes ["**/widget_*.png", "**/widget_*.xml", "**/map_*.xml", "**/map_*.png"]
|
include "**/widget_*.png", "**/widget_*.xml", "**/map_*.xml", "**/map_*.png"
|
||||||
}
|
}
|
||||||
|
|
||||||
task collectExternalResources {
|
task collectExternalResources {
|
||||||
|
|
Loading…
Reference in a new issue