blob: 8e3285d5d201de502bf85478caad7762eb6c141b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Graphic assets
This folder contains graphic assets that are used to generate assets for either the app or platforms
where the app is distributed.
## Android
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
```
|