728x90
react-native run-ios 를 할 때
fail이 아니라 영원히 build가 되지 않을 때가 있다.
원래는 이렇게 빌드가 잘 되어야 하는데
Building 다음에
..
이 위 사진처럼 많이 생기지 않고 딱 .. 2개만 생기면서 영원히 빌드가 끝나지 않을 때가 있다.
=>
https://github.com/facebook/react-native/issues/15469
여기서 해결법을 찾았다!
watchman watch-del-all
rm -rf node_modules
react-native run-ios --simulator="iPhone 11"
watchman을 한 번 깨끗하게 해주면 해결!
===========
What is watchman?
https://facebook.github.io/watchman/
https://stackoverflow.com/questions/42235799/what-is-the-use-of-watchman-for-react-native
파일을보고 파일이 변경되면 기록합니다
코드를 변경 한 시점을 감지 한 후 수동으로 새로 고치지 않아도 자동으로 장치 업데이트를 빌드하고 푸시합니다.
추가적으로 expo에서 제공하는 react native packager clear 방법도 참고하자!
https://forums.expo.io/t/how-to-clear-the-react-native-packager/1352
'Develop > React Native' 카테고리의 다른 글
[React Native] GraphQL & Apollo & Code Generator 사용법 (0) | 2020.05.11 |
---|---|
[React Native] WebView 사용법 (0) | 2020.05.11 |
Parent View의 Height를 알고싶다면? (0) | 2020.05.04 |
[React Native] library not found for -lAppAuth / Build input file cannot be found:에러 (0) | 2020.05.04 |
[React Native] react16 redux (0) | 2020.05.03 |