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 프로젝트 빌드 시, 위의 메시지가 뜨는 경우
1. /ios/Flutter 디렉토리로 이동
2. Debug.xcconfig 파일에
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"가 있는지 확인 후,
없으면 추가
3. Release.xcconfig 파일에
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 있는지 확인 후,
없으면 추가
4. 빌드 해보고 결과 확인
해결되지 않은 분은 댓글 남겨주시면 감사하겠습니다.
'개발 > Dart & Flutter' 카테고리의 다른 글
[Flutter] CocoaPods's specs repository is too out-of-date (0) | 2023.01.27 |
---|---|
[Flutter] dio로 이미지 여러 장 전송하기 - Send multiple images on multipart/form-data (0) | 2022.02.08 |
[Flutter] 인스타그램, 카카오톡처럼 탭 순서대로 이미지 선택하기 - Image Picker의 단점 / Platform Channel이란 (0) | 2022.02.07 |
[Flutter] 게시판 글 목록 무한 스크롤, Infinite Scrolling, Lazy Loading (0) | 2021.08.05 |
[Flutter] GridView.count는 setState 결과 반영이 안 된다 (0) | 2021.08.03 |