에러 내용
[!] 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`).
이 오류는 Flutter에서 빌드 시 만난 오류이다.
에러 원인
첨부한 에러 사항을 보면,
"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"
'Flutter > ERROR' 카테고리의 다른 글
Android Emulator Warning 해결 (0) | 2021.12.30 |
---|---|
[GETX] Binding 문제 (0) | 2021.12.20 |
[ERROR] TextField, TextFormField PrefixIcon, SuffixIcon 사이즈 줄이기 (0) | 2021.11.30 |
[ERROR] M1 에서 구글 로그인이 안되는 에러 (0) | 2021.11.09 |