When I have the following drawable:
<bitmap id="LauncherIcon" filename="launcher-icon.svg" />
It's conveniently resized to the launcher icon size of the device.
I have more drawables:
<bitmap id="alert" filename="alert.svg" />
And I hope to find a developer friendly way to do kind of the same as the compiler does for the launcher icon. In other words I'd like the svg to be resized for each device to a size * and converted to png (at least for old devices that can't handle svg).
*) another question is how to know what size to resize it. For what I want now the same size as the launcher icon is is a good option. But ideally it would be something like drawable.width="10% of device.screenWidth"
Any idea how to do this (or at least part of this)?