반응형
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`).
Xcode에서 IOS용 flutter 빌드 중에 발생한 Error Message이다.
발생 원인
- windows에서 만든 플러터 앱을 IOS 용으로 빌드할때 생겨서 고치기 어려웠던 오류다. 특정 파일이 없어서 발생한다.
해결 방법
- /ios/Flutter 디렉토리로 이동한다.
- Debug.xcconfig 파일에 \#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"가 있는지 확인한 후 없으면 추가한다.
- Release.xcconfig 파일에\#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig" \#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" 있는지 확인 후, 없으면 추가한다.
결론
xcconfig 파일이 debug에서만 만들어지고 release 할때는 제대로 만들어져있지 않아 생기는 오류였다. Xcode에 대해 이해가 부족했는데 이 버그를 고치면서 조금이나마 이해도가 늘어난 것 같다.
반응형
'개발 > Error Solved' 카테고리의 다른 글
[Android] 디버그 모드로 서명한 APK 또는 Android App Bundle을 업로드했습니다. 출시 모드로 APK 또는 Android App Bundle에 서명해야 합니다. (0) | 2024.09.15 |
---|---|
[Xcode] Could not build the precompiled application for the device. (0) | 2024.09.15 |
[Flutter]Unable to boot the Simulator launchd failed to respond (1) | 2024.09.06 |
[Flutter] IOS에서 앱을 완전 종료하고 나면 다시 실행이 안되는 버그 (2) | 2024.09.05 |
[Obsidian] 옵시디언 Canvas 열리지 않을 때 해결법 (0) | 2024.07.21 |