ios빌드

아래 이미지와 같이 XCode에서 iOS 빌드를 할때 시뻘건 에러들이 수두룩 나왔다. 해당 오류들은 Flutter 프로젝트에 Firebase를 적용하는 도중 발생한 문제였다. 원래 Firebase SDK가 적용되어 있는 상태였는데 앱을 이전하는 과정에서 Firebae SDK를 수정하면서 발생하였다. 정확한 원인은 Firebase의 가이드처럼 firebase-ios-sdk 를 적용하면서 기존에 수동으로 설치했던 모듈과 중복되는 이슈였다. 그래서 아래와 같이 firebase-ios-sdk는 제거하고 XCode의 Product - Clean -> Product - Run을 해줬더니 문제가 해결됐다. 끝
Flutter에서 iOS 빌드를 할때 아래와 같은 에러가 발생하는 경우가 있다. Error output from Xcode build: ↳ 2023-03-29 17:52:43.422 xcodebuild[74210:1568477] [MT] IDEFileReferenceDebug: [Load] Failed to load container at path: /Users/hercules/Library/Developer/Xcode/DerivedData/Runner-euogrsxqehguwdcuwnuyypclfmdp/SourcePackages/checkouts/swift-protobuf/Sources/protoc-gen-swift/Docs.docc, Error: Error Domain=com.apple.dt.IDEC..
오랜만에 새로운 프로젝트를 만들어서 iOS 빌드를 하려고 했다. 아래와 같은 에러 문구와 함께 빌드가 되지 않는것을 확인하고 구글링을 하니 바로 해결 방법을 찾았다. warning: The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.5.99. (in target 'AppAuth' from project 'Pods') [해결방법] Podfile의 최하단에 target version을 넣어주면 된다 post_install do |installer| installer.pods_project.targets.each do..
알렉산도대왕
'ios빌드' 태그의 글 목록