개발/Flutter

Flutter: Module 'path_provider_foundation' not found

귀염둥이 팡무 2024. 9. 3. 13:03

 

 

Flutter로 iOS 빌드 중 아래의 오류가 발생하였다.

Module 'path_provider_foundation' not found

 

이에 구글링을 해보니 다음과 같은 글을 확인할 수 있었다.

https://stackoverflow.com/a/75476084

 

Module 'path_provider' not found

I have used several times the Xcode simulator for my flutter app. One time I tried to change the simulator to iPhone 11 Pro (don't know if it did or did not cause the problem) but since then: I ge...

stackoverflow.com

 

위의 답변들을 종합해보았을 때, 이전에 다른 사유 때문에 pod init을 수동으로 호출했던 것이 문제로 보인다.

 

ios 폴더 내 Podfile과 Podfile.lock을 삭제 후 flutter buuld ios를 진행했을 때는 해결이 되지 않았으나.

flutter clean 및 추가적인 삭제 후 pub get을 진행하니 해결되었다.

flutter clean
rm -Rf ios/Pods
rm -Rf ios/.symlinks
rm -Rf ios/Flutter/Flutter.framework
rm -Rf ios/Flutter/Flutter.podspec
flutter pub get