Xcode 버전 업데이트 이후 Build input file cannot be found: ...에러 발생
$ watchman watch-del-all
$ rm -rf node_modules
$ npm i
$ npx pod-install
결과: 실패
$ cd node_modules/react-native/scripts && ./ios-install-third-party.sh && cd ../../../
$ cd node_modules/react-native/third-party/glog-0.3.5/ && ../../scripts/ios-configure-glog.sh
생각해 보니 에러 내용은 필요가 없어 삭제한 라이브러리이다.
해결 방법은
프로젝트 Root 폴더 -> ios -> Profile ->
에러 난 라이브러리 pod '<Library name>' :path => '../node_modules/<Library name>'
해당 라인 삭제 후
npx pod-install
xcode build 또는 npx react-native run-ios
해결 완료!