Reputation: 77
Error Code
Print: Entry, ":CFBundleIdentifier", Does Not Exist
To be solved
I want to start up an iOS simulator.
The actual device is iOS 14 and I upgraded Xcode in order to build the actual device.
As a result, the simulator doesn't work and I tried many things, but it didn't work, so I'd like to hear advice from someone who knows how to solve this problem or who has been in the same situation.
My environment.
What I tried
Upvotes: 2
Views: 633
Reputation: 1570
TLDR - delete yarn.lock
and run yarn
.
I had this same issue when upgrading to Xcode 12. I first followed this post to make React Native compatible with Xcode 12 Problems after upgrading to Xcode 12:ld: building for iOS Simulator, but linking in dylib built for iOS, architecture arm64.
My project could then build with Xcode, but not the react-native cli. react-native run-ios
threw the error
Print: Entry, ":CFBundleIdentifier", Does Not Exist
Removing my yarn.lock file and running yarn
did the trick as the new cli version has updates to this problem - https://github.com/react-native-community/cli/issues/1235.
Upvotes: 1