build.gradle: Don't generate hdpi and xhdpi launcher icons any more.

This commit is contained in:
Andreas Schildbach 2021-04-12 13:25:50 +02:00
parent 3aed6d687a
commit 8f5182e636

View file

@ -101,7 +101,7 @@ android {
task svgToPng(type: fr.avianey.androidsvgdrawable.gradle.SvgDrawableTask) {
from = files('graphics')
to = file('res')
targetedDensities = ['hdpi', 'xhdpi', 'xxhdpi', 'xxxhdpi']
targetedDensities = ['xxhdpi', 'xxxhdpi']
outputFormat = 'PNG'
outputType = 'mipmap'
}