mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-18 08:45:05 +00:00
Icon generation for android
This commit is contained in:
parent
945fbaea5b
commit
5ac56b95c3
3 changed files with 15 additions and 0 deletions
Binary file not shown.
Before Width: | Height: | Size: 128 KiB |
Before Width: | Height: | Size: 128 KiB After Width: | Height: | Size: 128 KiB |
15
scripts/android/app_icon.sh
Executable file
15
scripts/android/app_icon.sh
Executable 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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue