Icon generation for android

wownero
M 3 years ago
parent 945fbaea5b
commit 5ac56b95c3

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 KiB

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 128 KiB

@ -0,0 +1,15 @@
#!/bin/sh
ICON_PATH=""
DEST_PATH=`pwd`/../../assets/images/app_logo.png
case $APP_IOS_TYPE in
"monero.com")
ICON_PATH=`pwd`/../../assets/images/monero.com_logo.png;;
"cakewallet")
ICON_PATH=`pwd`/../../assets/images/cakewallet_logo.png;;
esac
rm $DEST_PATH
ln -s $ICON_PATH $DEST_PATH
Loading…
Cancel
Save