in Xcode, Bundle name in info.plist doesn't change bundle name (.app file name)

ios, iphone, macos, xcode

Solution

the applications name(also the display name) is set by a variable called product name .U can change this is in the build settings for target

Problem

I'm developing iPhone app. I changed `Bundle name` in info.plist. But `.app` doen't change from `<project name>.app`. *`.app` file is shown in the Products folder on the bottom of the Project Navigator(left side of the screen). I believe `.app` file is called `bundle` and `Bundle name` should change `.app`'s name. Am I wrong or am I missing something?

Original source

Related problems