에러
-
[React-native] folly/gen/String.h file not found 오류 해결Framework/React.js 2020. 7. 3. 00:02
리액트 네이티브를 실행할 때 다음과 같은 에러가 나는 경우가 있습니다. RN 0.62.0 update = 'folly/gen/String.h' file not found 이 에러는 react-native run-ios 할 때 즉, ios로 실행할 때 발생이 되었습니다. 이런 경우 해결법입니다. cd ios && rm -rf ~/Library/Caches/CocoaPods Pods ~/Library/Developer/Xcode/DerivedData/*; pod deintegrate; pod setup; pod install --repo-update; 해결법을 보니 xcode에 캐시가 남아있어서 그런 듯.. 참고 : https://github.com/facebook/react-native/issues/28441