Problem with android fonts

I have a working Android Studio project but when I tried to create a label in it with the Marker Felt.ttf font I got an error.
I tried booth:

auto title = Label::createWithTTF("Color Queue", "Marker Felt.ttf", 70);

and

auto title = Label::createWithTTF("Color Queue", "fonts/Marker Felt.ttf", 70);
//this one has worked for me on iOS

I have my font duplicated once in fonts file and other in Resources file.
Why the “iOS” way doesn’t work on Android and how can I make it work?

thx :smiley:

I would prefer to name the font file in lower case and without any whitespaces. This could be the issue.

1 Like

yep, that solved the problem ty <3
@mars3142