Problems with React-Native v 0.45.0 when building on Xcode

I initialized the response project. It is installed with version 0.45.0.

Xcode cannot build it. There is a problem with the config.hpp file. The error is highlighted in red, which says that the file "boost / config / user.hpp" was not found "

+5
source share
2 answers

Fight this problem all day today. It looks like there might be something in the latest version of the-native reaction that is causing build problems. And I tried everything to fix it.

Not sure what a long term solution is, but I just returned to 0.44.0 and it seems to work for me as a temporary solution.

react-native init MyAwesomeApp --version react-native@0.44.0 
+3
source

remove $ APP_DIR / node_modules / react-native / third-party / glog-0.3.4

download glob-0.3.5 from https://github.com/google/glog replace glob-0.3.4

+1
source

Source: https://habr.com/ru/post/1268662/


All Articles