Home > Blockchain >  I want to change my app name to S&S in flutter ios in info.plist but i am getting error
I want to change my app name to S&S in flutter ios in info.plist but i am getting error

Time:10-01

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 &amp?

  • Related