[Mobile]/[Flutter]
[Flutter] 오류 조치 사항
HiSmith
2023. 9. 23. 21:25
반응형
Pod install 후에 아래의 경고 메시지가 뜨는 경우가 있다.
[!] CocoaPods did not set the base configuration of your project because your project already has a custom config set. In order for CocoaPods integration to work at all, please either set the base configurations of the target `Runner` to `Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig` or include the `Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig` in your build configuration (`Flutter/Release.xcconfig`).
해당과 같이 나면, Release.config 에 아래 두줄 추가 후에 아래와 같이 조치할 수 도있다.
* Podfile.lock 삭제
* .symlink 삭제
* Pod 폴더 삭제
다시 pod install 하면 조치 된다.
반응형