I want to use "&" in app name for ios. what's method . i want to change name in CFBundleName tag in info.plist file of flutter. i am getting error while compiling for ios app.
CodePudding user response:
have to escape certain characters - & should be escaped using the XML entity &
http://en.wikipedia.org/wiki/XML#Escaping
CodePudding user response:
Can you try replacing &
with &
?