-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdensities.json
More file actions
35 lines (35 loc) · 902 Bytes
/
Copy pathdensities.json
File metadata and controls
35 lines (35 loc) · 902 Bytes
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
{
"_comment": "List of density output configurations. Template keys: {FILENAME} will be replaced with the input file basename (extension is removed) ; {DENSITY} will be replaced with the density name",
"densities": [
{
"name": "xxxhdpi",
"scale": 640,
"sub_dir": "drawable-{DENSITY}",
"file_name_pattern": "{FILENAME}"
},
{
"name": "xxhdpi",
"scale": 480,
"sub_dir": "drawable-{DENSITY}",
"file_name_pattern": "{FILENAME}"
},
{
"name": "xhdpi",
"scale": 320,
"sub_dir": "drawable-{DENSITY}",
"file_name_pattern": "{FILENAME}"
},
{
"name": "hdpi",
"scale": 240,
"sub_dir": "drawable-{DENSITY}",
"file_name_pattern": "{FILENAME}"
},
{
"name": "mdpi",
"scale": 160,
"sub_dir": "drawable-{DENSITY}",
"file_name_pattern": "{FILENAME}"
}
]
}