Xcode ERROR ITMS-90783: “Missing bundle display name”

app-store-connectfastlanetestflightxcode

Today I started to receive this error with fastlane and Xcode:

ERROR ITMS-90783: "Missing bundle display name. The Info.plist key
CFBundleDisplayName is missing or has an empty value in the bundle
with bundle identifier 'com.id'."

It was ok and I didn't remove this property. I think this is a bug on Apple's side.

Does anyone have the same issue and how did you fix it?

Best Answer

Just add a new property to info.plist:

enter image description here

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