Xcode ERROR ITMS-90783: "Missing bundle display name" Xcode ERROR ITMS-90783: "Missing bundle display name" xcode xcode

Xcode ERROR ITMS-90783: "Missing bundle display name"


Just add a new property to info.plist:

enter image description here

<key>CFBundleDisplayName</key><string>$(PRODUCT_NAME)</string>


Open "info.plist" from your project folder.

And add key:"Bundle display name" or CFBundleName

and write value:"your app name". or add product name like this $(PRODUCT_NAME)

Key value example

<key>CFBundleName</key><string>$(PRODUCT_NAME)</string>

Then your problem will be solved!

enter image description here


In Xcode, you could add "Display Name" by following the illustration below.enter image description here