超过 Apple Watch 应用大小限制
Apple watch app size limit exceeded
我正在尝试将我的 iOS 应用程序(具有 Apple Watch 扩展)放在 TestFlight 上,但我收到此错误:
TestFlight ERROR ITMS-90389: "Size Limit Exceeded. The size of watch application 'myAppName' (78MB) has exceeded the 50MB size limit."
手表扩展非常小,我没有引用任何大的东西。我正在使用 Xamarin。知道解决方案吗?
我通过从 watch 扩展项目中删除 Newtonsoft.Json
库解决了这个问题(我现在使用的是 XmlSerializer
)。手表应用程序减小到 46MB,现在可以在 TestFlight 上发布我的应用程序。
对于那些面临 'Size Limit Exceeded' 问题但未使用 Xamarin.转到扩展程序的项目设置,并将 Always Embed Swift Standard Libraries 设置为 No.
我正在尝试将我的 iOS 应用程序(具有 Apple Watch 扩展)放在 TestFlight 上,但我收到此错误:
TestFlight ERROR ITMS-90389: "Size Limit Exceeded. The size of watch application 'myAppName' (78MB) has exceeded the 50MB size limit."
手表扩展非常小,我没有引用任何大的东西。我正在使用 Xamarin。知道解决方案吗?
我通过从 watch 扩展项目中删除 Newtonsoft.Json
库解决了这个问题(我现在使用的是 XmlSerializer
)。手表应用程序减小到 46MB,现在可以在 TestFlight 上发布我的应用程序。
对于那些面临 'Size Limit Exceeded' 问题但未使用 Xamarin.转到扩展程序的项目设置,并将 Always Embed Swift Standard Libraries 设置为 No.