A Rush Hour game made with Cakelisp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
652 B

#!/bin/sh
# SRC_IMAGE=com.macoy.kitty-gridlock/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
SRC_IMAGE=assets/Icon.png
echo "Updating icons in com.macoy.kitty-gridlock/app/src/main/res/ based on $SRC_IMAGE"
convert $SRC_IMAGE -resize 72x72 Android/app/src/main/res/mipmap-hdpi/ic_launcher.png
convert $SRC_IMAGE -resize 48x48 Android/app/src/main/res/mipmap-mdpi/ic_launcher.png
convert $SRC_IMAGE -resize 96x96 Android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
convert $SRC_IMAGE -resize 142x142 Android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
convert $SRC_IMAGE -resize 192x192 Android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png