browser
browser

Reputation: 29

How to change app name when using localization

I have wrote code in InfoPlist.strings(English) file like this:

CFBundleDiaplayName="Lo Demo";

But it doesn't work. My app name is ${PRODUCT_NAME} in file named xxx-info.plist.

I have tried to delete the item "Bundle display name", but the app name didn't change.

Upvotes: 1

Views: 439

Answers (2)

trojanfoe
trojanfoe

Reputation: 122391

You misspelled it:

CFBundleDisplayName="Lo Demo";
          ^

Upvotes: 2

junkor
junkor

Reputation: 373

The right formate is

"CFBundleDisplayName" = "Lo Demo";

You lost the "". It's work for me.

Upvotes: 0

Related Questions