Build input file cannot be found: ... 에러 해결
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
해결 완료!
Author And Source
이 문제에 관하여(Build input file cannot be found: ... 에러 해결), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@dormahd114/Build-input-file-cannot-be-found-...-에러-해결저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)