could corona build app with chinese name?

I need to build my app with chinese name,but it didn’t work,and there is a message:Corona Simulator quit unexpectedly.Is that mean corona doesn’t support chinese? [import]uid: 45165 topic_id: 10215 reply_id: 310215[/import]

Are you building for Android or iOS? I’m using English and Chinese localization for my game name on iOS without problems.

I added two localization folders to my project for English and simplified Chinese. You have to add a file called “InfoPlist.strings” and in those you can overwrite the “CFBundleDisplayName” to support different languages. For example:

en.lproj/InfoPlist.strings:

CFBundleDisplayName = “Hello”;

zh-Hans.lproj/InfoPlist.strings:

CFBundleDisplayName = “??”;

Hope that helps.

Thomas [import]uid: 8460 topic_id: 10215 reply_id: 43726[/import]

Hi guys

How can I use “CFBundleDisplayName” in “Build.settings” file to change the App name for Android?

thanx [import]uid: 41548 topic_id: 10215 reply_id: 74530[/import]