While running my React Native project with react-native run-ios, I faced a new react native error. In the terminal it was showing:
An error was encountered processing the command (domain=NSPOSIXErrorDomain, code=2): Failed to install the requested application An application bundle was not found at the provided path. Provide a valid path to the desired application bundle. Print: Entry, “:CFBundleIdentifier”, Does Not Exist
For more clarification, I opened Xcode and build the project to throw the error and I got the error saying – config.h file not found.
To solve this react native error, I opened terminal at MyProject/mode_modules/react-native/third-party/glog-0.3.4/ and run the command ./configure
Then I re run the project using react-native run-ios and the react native error was gone.