Xcode 11 Beta 问题汇总

CFBundleVersion 问题

下载了Xcode 11 Beta 版后,运行以前的工程到模拟器,有可能发生CFBundleVersion不对的问题:The application’s Info.plist does not contain CFBundleVersion.
Ensure your bundle contains a CFBundleVersion with a valid semantic version number.
在这里插入图片描述
Xcode 11 Beta Release Notes中,看到了相关的说明:
Bundles without a CFBundleVersion are invalid and can’t be properly installed on devices or simulators. CoreSimulator now checks and rejects such bundles earlier in the process with a clearer error message. (49892531)
在CFBundleVersion中查看相关格式,发现格式有问题。
但是如果第一次运行的时候出现了CFBundleVersion的Issue,以后无论怎么改CFBundleVersion都依然存在问题。
在修改为正确格式的CFBundleVersion后,重启Xcode和Simulator,再次运行,发现运行成功。

未完待续

参考

https://developer.apple.com/documentation/xcode_release_notes/xcode_11_beta_release_notes?language=objc