Add plaza logo to icons.

This commit is contained in:
kenkeiras 2019-09-28 11:18:53 -07:00
parent 4f2721fb90
commit ac76c7d369
11 changed files with 45 additions and 0 deletions

45
Makefile Normal file
View File

@ -0,0 +1,45 @@
ROUND_ICONS=app/src/main/res/mipmap-mdpi/ic_launcher_round.png \
app/src/main/res/mipmap-hdpi/ic_launcher_round.png \
app/src/main/res/mipmap-xhdpi/ic_launcher_round.png \
app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
RECT_ICONS=app/src/main/res/mipmap-mdpi/ic_launcher.png \
app/src/main/res/mipmap-hdpi/ic_launcher.png \
app/src/main/res/mipmap-xhdpi/ic_launcher.png \
app/src/main/res/mipmap-xxhdpi/ic_launcher.png
ICONS=$(ROUND_ICONS) $(RECT_ICONS)
RECT_BASE=app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
ROUND_BASE=app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
BASE_ICONS=$(RECT_BASE) $(ROUND_BASE)
.PHONY: all
all: $(ICONS)
app/src/main/res/mipmap-mdpi/ic_launcher_round.png: $(ROUND_BASE)
convert $< -resize 48x48 $@
app/src/main/res/mipmap-hdpi/ic_launcher_round.png: $(ROUND_BASE)
convert $< -resize 72x72 $@
app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: $(ROUND_BASE)
convert $< -resize 96x96 $@
app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: $(ROUND_BASE)
convert $< -resize 144x144 $@
app/src/main/res/mipmap-mdpi/ic_launcher.png: $(RECT_BASE)
convert $< -resize 48x48 $@
app/src/main/res/mipmap-hdpi/ic_launcher.png: $(RECT_BASE)
convert $< -resize 72x72 $@
app/src/main/res/mipmap-xhdpi/ic_launcher.png: $(RECT_BASE)
convert $< -resize 96x96 $@
app/src/main/res/mipmap-xxhdpi/ic_launcher.png: $(RECT_BASE)
convert $< -resize 144x144 $@

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.2 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.8 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.2 KiB

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 21 KiB