Provide a valid path to the desired application bundle. Print: Entry, “:CFBundleIdentifier”, Does Not Exist

前端 未结 1 1708
面向向阳花
面向向阳花 2021-01-23 06:37
react-native-cli: 1.0.0
react-native: 0.39.2

I cloned a react native project. Then I ran npm install and then react-native run-ios<

相关标签:
1条回答
  • So, I had the same problem Jordan. react-native run-ios creates the Products & Intermediates folder in the ./ios/build folder, but the issue is the valid path is pointing to ./ios/build/Build. What I've been doing is I manually create the Build/ folder inside ./ios/build by issuing the command below:

    cd ./ios/build
    mkdir Build
    cd Build
    

    then, I symlink the folders:

    ln -s ../Products .
    ln -s ../Intermediates .
    

    You should be able to get react-native run-ios to work again.

    0 讨论(0)
提交回复
热议问题