解决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'.="
使用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'."
在StackOverflow上找到了解决方法,只需要在info.plist里新建属性CFBundleDisplayName,如下:
<key>CFBundleDisplayName</key>
<string>$(PRODUCT_NAME)</string>