Значит шрифты хорошо отображаются на 26 Api вот с этим кодом
<?xml version="1.0" encoding="utf-8"?>
<font-family
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<font
android:fontStyle="normal"
android:fontWeight="400"
android:font="@font/atma_regular"
/>
<font
android:fontStyle="normal"
android:fontWeight="100"
android:font="@font/atma_light"
/>
</font-family>
после добавление нового кода
<?xml version="1.0" encoding="utf-8"?>
<font-family
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<font
android:fontStyle="normal"
android:fontWeight="400"
android:font="@font/atma_regular"
app:fontStyle="normal"
app:fontWeight="400"
app:font="@font/atma_regular"
/>
<font
android:fontStyle="normal"
android:fontWeight="100"
android:font="@font/atma_light"
app:fontStyle="normal"
app:fontWeight="100"
app:font="@font/atma_light"
/>
</font-family>
для поддержки предыдущих версий android появляются куча ошибок, и MainActivity ругается как это всё исправить?