728x90
반응형
도입
flutter에서 cocoapods 를 업데이트 하는 경우 아래와 같이 에러나는 경우가 발생합니다.
해결 방법은 메시지 마지막 줄에 있는 Flutter/Release.xcconfig 를 수정하면 됩니다.
에러메시지
[!] 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.xcconfig 파일을 open 합니다. 후 아래의 내용을 추가합니다.
(기존의 내용을 모두 지우는 것도 괜찮은 방법입니다)
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"
#include "Generated.xcconfig"
끝
"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."
300x250
반응형
'Flutter' 카테고리의 다른 글
flutter / ERROR ) Unable to boot device because it cannot be located on disk (갱신) (0) | 2023.12.16 |
---|---|
GoogleFonts as default fonts in flutter app (1) | 2023.11.19 |
Flutter 화폐단위 넣고 천단위 적용해보자. (55) | 2023.06.17 |
[Flutter] Error: Dart library 'dart:ui' is not available on this platform (0) | 2023.05.06 |
Unable to create New Flutter Project in Android Studio (0) | 2023.04.03 |