Our app name contains a \"+\". Prior to Xcode 11.1 we could have a different Display name and PRODUCT_NAME
. However, when we updated to Xcode 11.1, changing the
In Xcode11, the app display name just set to ${PRODUCT_NAME}
.
that's display name always same as product name, try to update CFBundleDisplayName
in the Info.plist.
Update your Product Name
in your targets Build Settings to not include the special character:
Navigate to your Info.plist for your target and add a new property Bundle display name
:
<key>CFBundleDisplayName</key>
<string>+Quotes</string>
Keep the Bundle Name
property value as $(PRODUCT_NAME)
.
The name that will be displayed below your app icon on device will be the value you've assigned to Bundle Display Name
.