iOS
[Xcode] The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.
whoyoung90
2023. 4. 10. 01:03
반응형
> 이슈
flutter 프로젝트를 통해 xCode를 빌드시, 아래와 같은 에러가 뜰 수 있다.
The sandbox is not in sync with the Podfile.lock.
Run 'pod install' or update your CocoaPods installation.
> 해결
1. Xcode 종료
2. 터미널 켜서 프로젝트의 경로를 잡아주고(flutter라면 /ios)
3. rm -rf Pods
4. rm -rf Podfile.lock
5. pod install
6. 확장자가 프로젝트명.xcodeproj가 아니라 프로젝트명.xcworkspace로 xCode를 열어준다
7 .product -> clean 을 해주고 실행하면 해결
[참고 URL]
반응형