Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Different results in different folders with the same commands

When I run react-native init project in a one folder, I am unable to run the project (I get error Print: Entry, ":CFBundleIdentifier", Does Not Exist). However, in my Desktop folder, when I do the exact same thing (react-native init project then react-native run-ios) I get no errors at all.

Why might this be happening?

like image 407
MendyK Avatar asked Jul 27 '17 14:07

MendyK


1 Answers

Do you have spaces in the project directory path?

  • yes: try to remove spaces from directory path.
  • no: try to clear cache: rm ~/.rncache and see if it helps.

If it does not help, take a look at https://github.com/facebook/react-native/issues/14423

like image 91
quotesBro Avatar answered Sep 28 '22 06:09

quotesBro