17 lines
573 B
Plaintext
17 lines
573 B
Plaintext
doLast {
|
|
def moveFunc = { resSuffix ->
|
|
File originalDir = file("${resourcesDir}/drawable-${resSuffix}")
|
|
if (originalDir.exists()) {
|
|
File destDir = file("${resourcesDir}/drawable-${resSuffix}-v4")
|
|
ant.move(file: originalDir, tofile: destDir)
|
|
}
|
|
}
|
|
moveFunc.curry("ldpi").call()
|
|
moveFunc.curry("mdpi").call()
|
|
moveFunc.curry("hdpi").call()
|
|
moveFunc.curry("xhdpi").call()
|
|
moveFunc.curry("xxhdpi").call()
|
|
moveFunc.curry("xxxhdpi").call()
|
|
}
|
|
|
|
// Set up inputs and outputs so gradle can cache the result |