There is a really great tutorial here regarding how to bring in custom fonts into Android and iOS apps.
I tried to streamline the iOS process by adding a key/value pair of UIAppFonts/myfont.ttf to Project > Options > Version Info > [myTarget]. It's really annoying to have to replace/copy/paste/rename the info.plist file every time you do a full build, because there are 6 info.plist files that need to be managed (ios32,io64,ioSimulater x 2 for debug & release) - if you want your custom fonts to consistently show during development.
If one is to try and add a key/value pair like above, the key and string xml tags are created, but not the array tags (as seen in the linked tutorial). The UIAppFonts xml does not work without the array tags, even if there is only 1 entry in the array.
Is there a way to get the IDE to generate the correct tags for UIAppFonts? It wastes time to manage this 6 files and keep other developers aware of it.
Using Delphi 10.