blob: 5f0aef55bd1baa1239f65be9b23280d14a1c505d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# All About Descriptions, Graphics, and Screenshots
Each app can have complete app store content, including localized descriptions, feature graphics, and screenshots (as of v0.103 of the F-Droid client app and v0.8 of _fdroidserver_).
This is possible both when apps are added via [build metadata](../Build_Metadata_Reference) as well as when including pre-built files in a simple repository.
There are three paths to including app store content for apps (in order of preference):
* Do not remove this line (it will not be displayed)
{:toc}
```
- <fdroiddata>/
└── metadata/
└── <package-id>/
└── <locale>/
├── full_description.txt
├── short_description.txt
├── title.txt
├── video.txt
├── changelogs/
│ ├── <version-code>.txt
│ └── <version-code>.txt
└── images/
├── featureGraphic.png
├── icon.png
├── promoGraphic.png
├── tvBanner.png
├── phoneScreenshots/
│ └── *.png
├── sevenInchScreenshots/
│ └── *.png
├── tenInchScreenshots/
│ └── *.png
├── tvScreenshots/
│ └── *.png
└── wearScreenshots/
└── *.png
```
|