summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-05-20 16:56:29 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-05-27 14:00:34 +0000
commitbc9b1beb14574662bcb8afa44824ad056f94a608 (patch)
tree85ac74383c17c0606fba1fc58959e98c8f29ea50
parente38e573928e35cea8ca1b314968f21e1c06d56c9 (diff)
downloadmullvadvpn-bc9b1beb14574662bcb8afa44824ad056f94a608.tar.xz
mullvadvpn-bc9b1beb14574662bcb8afa44824ad056f94a608.zip
Add high-resolution icon image
-rw-r--r--android/src/main/play/listings/en-US/graphics/icon/icon.pngbin0 -> 19582 bytes
-rw-r--r--graphics/README.md9
2 files changed, 9 insertions, 0 deletions
diff --git a/android/src/main/play/listings/en-US/graphics/icon/icon.png b/android/src/main/play/listings/en-US/graphics/icon/icon.png
new file mode 100644
index 0000000000..23a1bb5fe3
--- /dev/null
+++ b/android/src/main/play/listings/en-US/graphics/icon/icon.png
Binary files differ
diff --git a/graphics/README.md b/graphics/README.md
index 5b60baafa1..8e3285d5d2 100644
--- a/graphics/README.md
+++ b/graphics/README.md
@@ -8,3 +8,12 @@ where the app is distributed.
The `Android-feature-graphics.psd` file should be used to generate a PNG image to be used as the
feature graphics in the app's Google Play Store listing. The PNG image should be placed in the
`android/src/main/play/listings/en-US/graphics/feature-graphics/` directory.
+
+The `icon-square.svg` is used to generate Android's square icon used in the app's Google Play Store
+listing. The resulting 512x512 PNG image should be placed in the
+`android/src/main/play/listings/en-US/graphics/icon/` directory. The file can be generate with the
+following command:
+
+```
+rsvg-convert ./icon-square.svg -w 512 -h 512 -o ../android/src/main/play/listings/en-US/graphics/icon/icon.png
+```