Hi, I have two weights of the same font.
Per @NickIliev’s answer at https://stackoverflow.com/a/41678274/877682, I see that the file name must match the font name on Android, so I named them [Font name] Regular.ttf" and “[Font name] SemiBold.ttf”.
I’m trying to include the semi-bold via
font-family: [Font name];
font-weight: 600;"
However, Android can’t find it, and it’s defaulting to a sans-serif font (which I assume is Roboto).
What’s the expected font file naming system in this case? Do I need to create separate android and ios CSS files, and then simply name use font-family: [Font name] Semibold;
on android?