-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
13 lines (12 loc) · 1.12 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
ic_launcher.png:
convert launcher.png -resize 72x72 android/app/src/main/res/mipmap-hdpi/ic_launcher.png
round -r 1 -o android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png android/app/src/main/res/mipmap-hdpi/ic_launcher.png
convert launcher.png -resize 48x48 android/app/src/main/res/mipmap-mdpi/ic_launcher.png
round -r 1 -o android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png android/app/src/main/res/mipmap-mdpi/ic_launcher.png
convert launcher.png -resize 96x96 android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
round -r 1 -o android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
convert launcher.png -resize 144x144 android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
round -r 1 -o android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
convert launcher.png -resize 192x192 android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
round -r 1 -o android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
.PHONY: ic_launcher.png