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.
13 lines
782 B
13 lines
782 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
|
SRC_IMAGE=com.macoy.kitty-gridlock/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
|
||
|
|
||
|
echo "Updating icons in com.macoy.kitty-gridlock/app/src/main/res/ based on $SRC_IMAGE"
|
||
|
|
||
|
convert $SRC_IMAGE -resize 72x72 com.macoy.kitty-gridlock/app/src/main/res/mipmap-hdpi/ic_launcher.png
|
||
|
convert $SRC_IMAGE -resize 48x48 com.macoy.kitty-gridlock/app/src/main/res/mipmap-mdpi/ic_launcher.png
|
||
|
convert $SRC_IMAGE -resize 96x96 com.macoy.kitty-gridlock/app/src/main/res/mipmap-xhdpi/ic_launcher.png
|
||
|
convert $SRC_IMAGE -resize 142x142 com.macoy.kitty-gridlock/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
|
||
|
# Don't need to convert base image (leaving this here in case base image changes)
|
||
|
# convert -resize 192x192 com.macoy.kitty-gridlock/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
|