Fix build
This commit is contained in:
parent
203d25c5e4
commit
393f568a4c
1 changed files with 15 additions and 5 deletions
|
@ -361,18 +361,28 @@ task copyPoiCategories(type: Copy) {
|
|||
into "assets"
|
||||
}
|
||||
|
||||
task copyStyleIcons(type: Sync) {
|
||||
from "../../resources/rendering_styles/style-icons/"
|
||||
task copyMapShaderIcons(type: Sync) {
|
||||
from "../../resources/rendering_styles/style-icons/map-shaders-png"
|
||||
into "res/"
|
||||
include "**/*.png", "**/*.xml"
|
||||
preserve {
|
||||
include '**/*'
|
||||
exclude "**/mm_*", "**/h_*"
|
||||
exclude "**/h_*"
|
||||
}
|
||||
}
|
||||
|
||||
task copyPOIIcons(type: Sync) {
|
||||
from "../../resources/rendering_styles/drawable-mx/"
|
||||
task copyMapPOIIcons(type: Sync) {
|
||||
from "../../resources/rendering_styles/style-icons/map-icons-png"
|
||||
into "res/"
|
||||
include "**/*.png", "**/*.xml"
|
||||
preserve {
|
||||
include '**/*'
|
||||
exclude "**/mm_*"
|
||||
}
|
||||
}
|
||||
|
||||
task copyLargePOIIcons(type: Sync) {
|
||||
from "../../resources/rendering_styles/style-icons/poi-icons-vector"
|
||||
into "res/drawable/"
|
||||
include "**/*.png", "**/*.xml"
|
||||
preserve {
|
||||
|
|
Loading…
Reference in a new issue