Fix font not loading in Android 5

This commit is contained in:
h4h13 2019-11-21 22:01:39 +05:30
parent 29e9008980
commit 8303c376ca
5 changed files with 24 additions and 34 deletions

View file

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:android="http://schemas.android.com/apk/res/android">
<font-family xmlns:app="http://schemas.android.com/apk/res-auto">
<font
android:font="@font/circular_std_book"
android:fontStyle="normal"
android:fontWeight="400" />
app:font="@font/circular_std_book"
app:fontStyle="normal"
app:fontWeight="400" />
<font
android:font="@font/circular_std_medium"
android:fontStyle="normal"
android:fontWeight="600" />
app:font="@font/circular_std_medium"
app:fontStyle="normal"
app:fontWeight="600" />
<font
android:font="@font/circular_std_black"
android:fontWeight="900" />
app:font="@font/circular_std_black"
app:fontWeight="900" />
</font-family>