Icon generation for android

This commit is contained in:
M 2022-01-04 20:33:57 +02:00
parent 945fbaea5b
commit 5ac56b95c3
3 changed files with 15 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 128 KiB

View file

Before

Width:  |  Height:  |  Size: 128 KiB

After

Width:  |  Height:  |  Size: 128 KiB

15
scripts/android/app_icon.sh Executable file
View file

@ -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