React Native IOS Build CFBundleIdentifier Does not Exist

前端 未结 11 920
萌比男神i
萌比男神i 2021-01-12 00:38

I have create sample React Native project and following the tutorial as per react native website.

I have try to run the application IOS simulator, its throwing error

11条回答
  •  粉色の甜心
    2021-01-12 00:59

    For anyone still have this problem,I myself experienced this due to the xcode 12 upgrade. i solved my problem by upgrading my rn by using this command :

    react-native upgrade
    

    then go to podfile change your

    pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon"
    

    to

    pod 'React-callinvoker', :path => "../node_modules/react-native/ReactCommon/callinvoker"
    

    Good luck!

提交回复
热议问题