Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error:(34) error: resource array/preloaded_fonts not found

Tags:

android

I imported a font and then decided against it, I deleted it from my files using safe usage and nothing came up, so I deleted it.

All of a sudden I am unable to build my project and I get the error mentioned.

I try to remove

<meta-data
            android:name="preloaded_fonts"
            android:resource="@array/preloaded_fonts" />

But this reappears after trying to build the project again. I have removed all references that I believed to be linked to this error but clearly, I am missing something.

enter image description here

like image 616
Display name Avatar asked Dec 10 '22 07:12

Display name


1 Answers

There's a hint at the top of editor window:

Files under the "build" folder are generated and should not be edited

Edit manifest in the src folder, not in build folder. Alternatively you can find manifest in the app/manifests in the Project pane on the left.

like image 97
Sergey Glotov Avatar answered Jan 12 '23 00:01

Sergey Glotov