解决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 'xx.xx'.="

时间:2021-06-10 17:47:09

使用XCode上传App时报错,错误如下:

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 'xx.xx'."

在*上找到了解决方法,只需要在info.plist里新建属性CFBundleDisplayName,如下:

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

查看:https://*.com/a/56812838/1304650