xcode Cocoa App Bad Bundle可执行文件

时间:2016-07-27 17:55:15

标签: xcode macos app-store xcode7 plist

我试着将我的Cocoa应用程序部署到应用程序商店并且不断收到以下错误,我已经把头发拉了几个小时:

  • 错误ITMS-90236缺少必需的图标
  • 错误ITMS-90260 Bad Bundle Executable
  • 错误ITMS-90261错误CFBundleExecutable

我的info.plist文件如下所示:

<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleGetInfoString</key>
<string></string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.business</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2016. All rights reserved.</string>
<key>NSMainNibFile</key>
<string>MainMenu</string>
<key>CFBundleIconFile</key>
<string></string>

我的应用图标应该从AppIcon加载 enter image description here

有谁知道如何解决这个问题?

谢谢

0 个答案:

没有答案