当我在模拟器或设备上运行它时,我的应用程序运行正常(用于调试和发布构建配置).但是当我尝试将我的应用程序提交到Apple Store时,我收到以下错误:
ERROR ITMS-90207:"无效的捆绑包.'APPNAME.app'的捆绑包不包含捆绑可执行文件."
我尝试使用Xcode和Application Loader上传档案,但没有成功.
我已经尝试了本主题中的一些解决方案(Xcode App Submisson ERROR ITMS-90207:"无效的捆绑包")但它们都不适用于我的项目:
也许这个错误与Xcode版本有关...我的mac正在运行macOS Sierra版本10.12.6 Beta(16G8c),Xcode版本8.3.2(8E2002)和Application Loader版本3.0(620).
欢迎任何帮助.
UDPATE:
我尝试使用Xcode 8.2,我有同样的错误.
这是我的plist文件以获取更多详细信息:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleAllowMixedLocalizations</key>
<true/>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDisplayName</key>
<string>APPNAME</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</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>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>fb000000</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>639</string>
<key>FacebookAppID</key>
<string>000000</string>
<key>FacebookDisplayName</key>
<string>APPNAME</string>
<key>FirebaseAppDelegateProxyEnabled</key>
<false/>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>fbapi</string>
<string>fb-messenger-api</string>
<string>fbauth2</string>
<string>fbshareextension</string> …Run Code Online (Sandbox Code Playgroud)