- node_modules 삭제:
rm -rf node_modules
- package-lock.json 삭제:
rm -f package-lock.json
- Pods 폴더 및 Podfile.lock 삭제:
rm -rf ios/Pods ios/Podfile.lock
- Pod deintegrate:
cd ios && pod deintegrate
- Pod 캐시 전체 삭제:
pod cache clean --all
- npm install 및 pod install:
npm install && cd ios && pod install
- Xcode에서 cmd+shift+k (빌드 캐시 정리): Xcode에서 직접 수행
- cmd + b (프로젝트 빌드): Xcode에서 직접 수행