Description
This happens because I installed both Xcode 10 & Xcode 11 beta. Also, I installed the required components after installing Xcode 11 beta.
After installing Xcode 11 beta, when we try to run application, it shows an error.
For my case, beta
works well, real
build successful but Xcode show an error The Application's Info.plist Does Not Contain CFBundleVersion
.
Reason
The issue here is that the new version of CoreSimulator.framework with Xcode 11 beta does validation on CFBundleVersion that previous versions did not do. These checks are valid, and it does represent an issue in your application, but there’s also a bug in how the checks were performed in Xcode 11 Beta 1 which compounds the issue.
Solution
For my case, the CFBundleVersion
shows correctly.
And killall -9 CoreSimulatorBridge
doesn’t works for me.
What I’m trying to do is:
- Quit Xcode & Simulator
- Remove
/Library/Developer
- Relaunch Xcode 10, and it works well.
After relaunching it works well now. 🎉
Comments
Join the discussion for this article at here . Our comments is using Github Issues. All of posted comments will display at this page instantly.