Jamal-Nazzal
Jamal-Nazzal
I'm facing the same issue ``` ../../../../build/third-party-ndk/folly\folly/dynamic.h:63:10: fatal error: 'boost/operators.hpp' file not found #include ^~~~~~~~~~~~~~~~~~~~~ 1 error generated. [9/10] Building CXX object CMakeFiles/VisionCamera.dir/src/main/cpp/CameraView.cpp.o ninja: build stopped: subcommand failed. ```
When I try this: go to \node_modules\react-native-vision-camera\android\build\third-party-ndk I find the boost folder named "boost_1_63_0", I rename it to just "boost". the build works, but this time I get the following...
Please check my comment above. inside `\node_modules\react-native-vision-camera\android\build\third-party-ndk` there is a folder that should be named `boost` for some reason it gets named `boost_1_63_0` that's why boost/operators.hpp can't be found. If...
the first time visionCamera builds it installs this library [https://github.com/react-native-community/boost-for-react-native](url) something wrong happens there. sometimes it builds fine and creates a folder called `boost`, other times it names it `boost_1_63_0`...
Now I'm getting this error `Error: EPERM: operation not permitted, lstat 'C:\Users\...\app\node_modules\react-native-vision-camera\android\build\intermediates\cxx\Debug\602l1f37\obj\arm64-v8a\libVisionCamera.so.tmp50c975e' Emitted 'error' event on NodeWatcher instance at: at NodeWatcher. (C:\Users\...\app\node_modules\sane\src\node_watcher.js:291:16) at FSReqCallback.oncomplete (node:fs:198:21) { errno: -4048, code: 'EPERM',...
has this been solved ever?