Fix script
This commit is contained in:
parent
b0de707196
commit
e08a147f37
1 changed files with 12 additions and 1 deletions
|
@ -367,10 +367,21 @@ task copyStyleIcons(type: Sync) {
|
||||||
include "**/*.png", "**/*.xml"
|
include "**/*.png", "**/*.xml"
|
||||||
preserve {
|
preserve {
|
||||||
include '**/*'
|
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) {
|
task copyWidgetIconsXhdpi(type: Sync) {
|
||||||
from "res/drawable-xxhdpi/"
|
from "res/drawable-xxhdpi/"
|
||||||
|
|
Loading…
Reference in a new issue