mkicons.sh 387 B

1234567891011
  1. #!/bin/bash
  2. RSVG=${RSVG:=rsvg-convert}
  3. ${RSVG} -w 24 -h 24 icons/launcher.svg > res/drawable-ldpi/icon.png
  4. ${RSVG} -w 32 -h 32 icons/launcher.svg > res/drawable-mdpi/icon.png
  5. ${RSVG} -w 48 -h 48 icons/launcher.svg > res/drawable-hdpi/icon.png
  6. ${RSVG} -w 64 -h 64 icons/launcher.svg > res/drawable-xhdpi/icon.png
  7. ${RSVG} -w 180 -h 120 icons/promo-graphic.svg > icons/promo-graphic.png