将 ios 个应用上传到 AppStore 时出错
Errors uploading ios app to AppStore
我在一台旧的 macbook 上做一个项目,然后得到了一个新的我复制并粘贴了该项目并继续进行它的工作。现在,当我想更新 Appstore 上的应用程序时,出现了一系列错误。我尝试了一些在网上找到的建议,但无法让它发挥作用。
我得到的错误是:
ERROR ITMS-90171: "Invalid Bundle Structure - The binary file 'MyApp.app/MyApp WatchKit App.app/_WatchKitStub/WK' is not permitted. Your app can't contain standalone executables or libraries, other than the CFBundleExecutable of supported Bundles."
ERROR ITMS-90455: "The Binary you uploaded was invalid."
ERROR ITMS-90499: "Missing Apple Watch Extension. The application 'MyApp.app/MyApp WatchKit App.app' is missing its corresponding Apple Watch Extension."
ERROR ITMS-90508: "Invalid Info.plist value. The value for the key 'DTPlatformName' in bundle MyApp.app/MyApp WatchKit App.app is invalid."
清理和重建没有成功。
在我的一般项目设置中,它指出在嵌入式二进制文件中有一个 "MyApp WatchKit Extension.appex"
有人遇到同样的问题吗?
谢谢
WatchKitSupport/WK
库不应包含在 IPA 文件中。
转到Build Phases > Copy Bundle Resources并将其从构建中删除。
对我有用的是从嵌入式二进制文件中删除 WatchKit 扩展(项目 -> 主要目标 -> 常规),然后再次添加它。
我在一台旧的 macbook 上做一个项目,然后得到了一个新的我复制并粘贴了该项目并继续进行它的工作。现在,当我想更新 Appstore 上的应用程序时,出现了一系列错误。我尝试了一些在网上找到的建议,但无法让它发挥作用。
我得到的错误是:
ERROR ITMS-90171: "Invalid Bundle Structure - The binary file 'MyApp.app/MyApp WatchKit App.app/_WatchKitStub/WK' is not permitted. Your app can't contain standalone executables or libraries, other than the CFBundleExecutable of supported Bundles."
ERROR ITMS-90455: "The Binary you uploaded was invalid."
ERROR ITMS-90499: "Missing Apple Watch Extension. The application 'MyApp.app/MyApp WatchKit App.app' is missing its corresponding Apple Watch Extension."
ERROR ITMS-90508: "Invalid Info.plist value. The value for the key 'DTPlatformName' in bundle MyApp.app/MyApp WatchKit App.app is invalid."
清理和重建没有成功。
在我的一般项目设置中,它指出在嵌入式二进制文件中有一个 "MyApp WatchKit Extension.appex"
有人遇到同样的问题吗?
谢谢
WatchKitSupport/WK
库不应包含在 IPA 文件中。
转到Build Phases > Copy Bundle Resources并将其从构建中删除。
对我有用的是从嵌入式二进制文件中删除 WatchKit 扩展(项目 -> 主要目标 -> 常规),然后再次添加它。