答案 0 :(得分:0)
我自己就遇到了这个问题,尽管错误指出问题出在CFBundleName
上,但也可以通过在主应用程序目标中添加CFBundleDisplayName
和字符串值来解决作为扩展目标。
参见下文:
MainApp/Info.plist
<key>CFBundleDisplayName</key>
<string>My App</string>
AppExtension/Info.plist
<key>CFBundleDisplayName</key>
<string>My App</string>