4
  1. Installed react-native

  2. Created a project with "react-native init myproj"

  3. After that I tried to run the project using "react-native run-ios"

It fails here with the error below:

Print: Entry, ":CFBundleIdentifier", Does Not Exist /Users/blaze/Desktop/prasa/node_modules/promise/lib/done.js:10 throw err; ^

Error: Command failed: /usr/libexec/PlistBuddy -c Print:CFBundleIdentifier build/Build/Products/Debug-iphonesimulator/prasa.app/Info.plist Print: Entry, ":CFBundleIdentifier", Does Not Exist

Any suggestions?

3
  • Could you add the whole error section Feb 25, 2016 at 10:18
  • had the same issue, not sure what's going on
    – Cameron
    May 8, 2016 at 17:04
  • 1
    open the ios project in x code. check all dependencies. Check if the ios project builds successfully.
    – chetan
    May 11, 2018 at 10:10

3 Answers 3

1
  1. Delete the iOS/build directory
  2. Reset content and settings in the iOS simulator

It worked for me.

0
0

I solved this issue with the react-native upgrade command, which helped me reset some details in various xcode files. This solved the issue.

0

delete node modules folder. and reinstall it again using yarn/npm install

This solved the issue

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.