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

Nik Kov picture Nik Kov · Jun 28, 2019 · Viewed 10.8k times · Source

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?

Answer

Alexey Shikov picture Alexey Shikov · Jun 28, 2019

Just add a new property to info.plist:

enter image description here

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