我已经包含了我收到的完整错误消息的屏幕截图。当我尝试将我的应用程序提交到iTunesConnect时会发生这种情况。运行应用程序时我没有收到任何错误。 最佳答案 对我来说,这个问题是由于将框架包含在bundle中引起的。即,我正在将.framework文件复制到应用程序包中。这不是必需的,因为框架静态链接到主应用程序二进制文件。很可能,您有一个文件夹,其中包含您复制到项目中的.framework(例如“外部”或“第三方”)。该文件夹不应具有任何目标的成员身份。在您的Frameworks文件夹本身中,应该是实际的.framework文
将appbundle上传到AppStore后,会显示一个带有以下警告的对话框:WARNINGITMS-90686:"Thebinaryyouuploadedwasinvalid."该应用确实已被应用商店接受,并且可以通过TestFlight安装,没有任何问题。对应用程序所做的唯一更改是将“仅构建事件架构”从"is"设置为“否”(对于发布)。最初CocoaPod仍然将该设置设置为YES时存在问题,但尽管修复了警告仍然返回。Xcode的构建问题View中没有警告。 最佳答案 事实证明这是AppStore的一个临时问题,如果您的应用出现在
将appbundle上传到AppStore后,会显示一个带有以下警告的对话框:WARNINGITMS-90686:"Thebinaryyouuploadedwasinvalid."该应用确实已被应用商店接受,并且可以通过TestFlight安装,没有任何问题。对应用程序所做的唯一更改是将“仅构建事件架构”从"is"设置为“否”(对于发布)。最初CocoaPod仍然将该设置设置为YES时存在问题,但尽管修复了警告仍然返回。Xcode的构建问题View中没有警告。 最佳答案 事实证明这是AppStore的一个临时问题,如果您的应用出现在
我要将sift2.2转换为swfit3.0并上传到iTunes商店然后出现一个错误。我受够了这个错误:-ERRORITMS-90171:"InvalidBundleStructure-Thebinaryfile'ideaPitch.app/libswiftRemoteMirror.dylib'isnotpermitted.Yourappcan’tcontainstandaloneexecutablesorlibraries,otherthantheCFBundleExecutableofsupportedbundles.RefertotheBundleProgrammingGuidea
我要将sift2.2转换为swfit3.0并上传到iTunes商店然后出现一个错误。我受够了这个错误:-ERRORITMS-90171:"InvalidBundleStructure-Thebinaryfile'ideaPitch.app/libswiftRemoteMirror.dylib'isnotpermitted.Yourappcan’tcontainstandaloneexecutablesorlibraries,otherthantheCFBundleExecutableofsupportedbundles.RefertotheBundleProgrammingGuidea
所以这很奇怪——我在尝试将存档提交到AppStore时遇到以下错误:ERRORITMS-90049:"Thisbundleisinvalid.Thebundleidentifiercontainsdisallowedcharacters.[SeethesectionoftheApplicationProgrammingGuideentitledTheAPplicationBundle.]"ERRORITMS-90049"Thisbundleisinvalid.ThebundleidentifiercontainsdisallowedcharactersERRORITMS-90056:"
所以这很奇怪——我在尝试将存档提交到AppStore时遇到以下错误:ERRORITMS-90049:"Thisbundleisinvalid.Thebundleidentifiercontainsdisallowedcharacters.[SeethesectionoftheApplicationProgrammingGuideentitledTheAPplicationBundle.]"ERRORITMS-90049"Thisbundleisinvalid.ThebundleidentifiercontainsdisallowedcharactersERRORITMS-90056:"
我以前能够毫无问题地提交我的申请。我的工作流程中唯一改变的部分是使用Sourcetree。在对以下框架进行更新后,我在提交到iOSAppStore时收到此警告。我还收到一封电子邮件,其中包含:Non-PIEBinary-Theexecutable'Payload/myapp.app/Frameworks/Alamofire.framework'isnotaPositionIndependentExecutable.PleaseensurethatyourbuildsettingsareconfiguredtocreatePIEexecutables.Formoreinformation
我以前能够毫无问题地提交我的申请。我的工作流程中唯一改变的部分是使用Sourcetree。在对以下框架进行更新后,我在提交到iOSAppStore时收到此警告。我还收到一封电子邮件,其中包含:Non-PIEBinary-Theexecutable'Payload/myapp.app/Frameworks/Alamofire.framework'isnotaPositionIndependentExecutable.PleaseensurethatyourbuildsettingsareconfiguredtocreatePIEexecutables.Formoreinformation
我试图将预发布版本上传到iTunes以将其与新的iTunesTestFlight集成一起使用。我的持续集成build设置的方式是每个版本都被标记为gitcommitshorthash。例子:版本:1.7.6构建版本:1.7.6.4ABD89A提交时我不断收到以下错误:错误ITMS-4236:“SoftwareAssets中的bundle_version的值‘1.7.6(4ABD89A)’无效我尝试过不同的格式,例如:1.7.6.4ABD89A、1.7.6(4ABD89A)和1.7.6[4ABD89A]我想知道以前是否有人遇到过这个问题,如果不接受,哪些格式是可以接受的?