`React/RCTBridgeModule.h` file not found

后端 未结 21 2245
执笔经年
执笔经年 2020-11-30 00:31

Getting this error while building a react-native iOS app on xcode.

Started getting this error after npm install and rpm linking react-native-fs library. But

21条回答
  •  自闭症患者
    2020-11-30 00:51

    What you can do to get it right is:

    1) npm uninstall reat-native-fs to uninstall library

    2)npm unlink react-native-fs to unlink the library

    Now the library is successfully removed and now install the lib again in your project and this time link everything manually. Sometime automatic linking causes this error.

提交回复
热议问题