-
[React Native_에러해결] xcode 에러해결 '►Start the active scheme'► JS Algorithm/Programmers 2023. 12. 15. 11:05반응형
에러상태
▼ 에러 발생한 이유
xcode에서 '►Start the active scheme' 했더니, 아래와 같은 에러가 발생하였다
▼ 에러코드
> react-native-webview 1 issue >> RNCWKProcessPoolManager >>> Build input file cannot be found: '/Users/소스/achivel>node_modules/react- native-webview/ios/RNCWKProcessPoolManager.m'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?
에러해결방법
pod을 재설치해준다.
▼ 에러해결 명령어
% cd ./ios % pod cache clean -all //pod삭제 명령어 % pod install //pod설치 명령어 % cd .. % npx react-native start // 또는 npx react-native run-ios
에러해결완료
개인적으로 개발시행착오를 겪으면서, 그런 경험들을 기록하기도하고, 모은정보들을 메모하며, 개인공부내용을 공유하는 게시물입니다. 친절한 조언과 다양한 의견 남겨주시고, 소통해주시는분들은 언제든지 환영합니다 :D
반응형'► JS Algorithm > Programmers' 카테고리의 다른 글
[Programmers] JavaScript 알고리즘 | Lv.0 카운트 다운 (0) 2023.12.15 [Programmers] JavaScript 알고리즘 | Lv.0 조건에 맞게 수열 변환하기 3 (0) 2023.12.15 [Programmers] JavaScript 알고리즘 | Lv.0 배열에서 문자열 대소문자 변환하기 (0) 2023.12.14 [Programmers] JavaScript 알고리즘 | Lv.0 더 크게 합치기 (0) 2023.12.14 [Programmers] JavaScript 알고리즘 | Lv.0 공배수 (0) 2023.12.13