Xcode ERROR ITMS-90783: "Missing bundle display name"
In Xcode, you could add "Display Name" by following the illustration below.
I am having the problem too. Although a newly project has this in its info.plist:
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
That broke in the last few days for me. Now I hard code CFBundleName to the application name and that seems to work.
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!
Just add a new property to info.plist:
<key>CFBundleDisplayName</key>
<string>$(PRODUCT_NAME)</string>