1<?xml version="1.0" encoding="utf-8"?>
2<!--
3    Fallback Fonts
4
5    This file specifies the fonts, and the priority order, that will be searched for any
6    glyphs not handled by the default fonts specified in /system/etc/system_fonts.xml.
7    Each entry consists of a family tag and a list of files (file names) which support that
8    family. The fonts for each family are listed in the order of the styles that they
9    handle (the order is: regular, bold, italic, and bold-italic). The order in which the
10    families are listed in this file represents the order in which these fallback fonts
11    will be searched for glyphs that are not supported by the default system fonts (which are
12    found in /system/etc/system_fonts.xml).
13
14    Note that there is not nameset for fallback fonts, unlike the fonts specified in
15    system_fonts.xml. The ability to support specific names in fallback fonts may be supported
16    in the future. For now, the lack of files entries here is an indicator to the system that
17    these are fallback fonts, instead of default named system fonts.
18
19    There is another optional file in /vendor/etc/fallback_fonts.xml. That file can be used to
20    provide references to other font families that should be used in addition to the default
21    fallback fonts. That file can also specify the order in which the fallback fonts should be
22    searched, to ensure that a vendor-provided font will be used before another fallback font
23    which happens to handle the same glyph.
24
25    Han languages (Chinese, Japanese, and Korean) share a common range of unicode characters;
26    their ordering in the fallback or vendor files gives priority to the first in the list.
27    Language-specific ordering can be configured by adding a BCP 47-style "lang" attribute to
28    a "file" element; fonts matching the language of text being drawn will be prioritised over
29    all others.
30-->
31<familyset>
32    <family>
33        <fileset>
34            <file variant="elegant">DroidNaskh-Regular.ttf</file>
35        </fileset>
36    </family>
37    <family>
38        <fileset>
39            <file variant="compact">DroidNaskh-Regular-SystemUI.ttf</file>
40        </fileset>
41    </family>
42    <family>
43        <fileset>
44            <file>DroidSansEthiopic-Regular.ttf</file>
45        </fileset>
46    </family>
47    <family>
48        <fileset>
49            <file>DroidSansHebrew-Regular.ttf</file>
50            <file>DroidSansHebrew-Bold.ttf</file>
51        </fileset>
52    </family>
53    <family>
54        <fileset>
55            <file>DroidSansThai.ttf</file>
56        </fileset>
57    </family>
58    <family>
59        <fileset>
60            <file>DroidSansArmenian.ttf</file>
61        </fileset>
62    </family>
63    <family>
64        <fileset>
65            <file>DroidSansGeorgian.ttf</file>
66        </fileset>
67    </family>
68    <family>
69        <fileset>
70            <file>DroidSansDevanagari-Regular.ttf</file>
71        </fileset>
72    </family>
73    <family>
74        <fileset>
75            <file>DroidSansTamil-Regular.ttf</file>
76            <file>DroidSansTamil-Bold.ttf</file>
77        </fileset>
78    </family>
79    <family>
80        <fileset>
81            <file>AnjaliNewLipi-light.ttf</file>
82        </fileset>
83    </family>
84    <family>
85        <fileset>
86            <file>Lohit-Bengali.ttf</file>
87        </fileset>
88    </family>
89    <family>
90        <fileset>
91            <file>Lohit-Kannada.ttf</file>
92        </fileset>
93    </family>
94    <family>
95        <fileset>
96            <file>NanumGothic.ttf</file>
97        </fileset>
98    </family>
99    <family>
100        <fileset>
101            <file>AndroidEmoji.ttf</file>
102        </fileset>
103    </family>
104    <family>
105        <fileset>
106            <file>DroidSansFallback.ttf</file>
107        </fileset>
108    </family>
109    <family>
110        <fileset>
111            <file lang="ja">MTLmr3m.ttf</file>
112        </fileset>
113    </family>
114    <!--
115        Fonts below this point have problematic glyphs and should not be moved
116        higher in the fallback list until those glyphs have been fixed.
117    -->
118    <family>
119        <fileset>
120            <file>Lohit-Telugu.ttf</file> <!-- masks U+FFBC-10007 -->
121        </fileset>
122    </family>
123</familyset>
124