본문 바로가기

개발(합니다)/시나브로(이슈)

[Flutter-mac] CocoaPods did not set the base configuration of your project because your project already has a custom config set

반응형

상황

mac에서 flutter와 xcode를 업그레이드 하고 나서 빌드 에러가 발생했습니다.

 

문제 파악

"#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"가 누락 되어 있다는 문구를 확인했습니다.

 

해결 방법

ios/Flutter에 있는 Release.xcconfig 파일에서 아래 문구를 추가합니다.

#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"

 

반응형