How can I regenerate ios folder in React Native project?

后端 未结 13 684
忘掉有多难
忘掉有多难 2020-11-29 20:13

So a while ago I deleted the /ios directory in my react native app (let\'s call it X). I\'ve been developing and testing using the android emulator but now I\'d like to make

13条回答
  •  既然无缘
    2020-11-29 20:58

    Remove the ios folder first

     react-native eject 
     cd ios/ 
     pod init 
     pod install 
     cd .. 
     react-native link 
     cd ios 
     open *.xcworkspace/
    

提交回复
热议问题