인프런 커뮤니티 질문&답변

운좋은올뺴미님의 프로필 이미지
운좋은올뺴미

작성한 질문수

[2024 최신] [코드팩토리] [초급] Flutter 3.0 앱 개발 - 10개의 프로젝트로 오늘 초보 탈출!

세팅하기

IOS 버전 업데이트 후 에러 발생(Error (Xcode): File not found: /Applications/...)

작성

·

2.3K

1

Could not build the precompiled application for the device.
Error (Xcode): File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a

Error (Xcode): Linker command failed with exit code 1 (use -v to see invocation)

안드로이드에서는 에러가 발생하지 않는데 iPhone 시뮬레이터에서 에러가 발생하는데,

iOS/Podfile 을 아래와 같이 수정하시면 됩니다.

post_install do |installer|
  installer.generated_projects.each do |project|
    project.targets.each do |target|
        target.build_configurations.each do |config|
            config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
         end
    end
end
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
  end
end

저의 경우는 마지막 부분을 수정해줬습니다.

 

https://stackoverflow.com/questions/75894992/missing-file-libarclite-iphoneos-a-in-xcode-14-3-after-update-flutter-and-xcod/75901008#75901008

답변 1

1

코드팩토리님의 프로필 이미지
코드팩토리
지식공유자

좋은 정보 감사합니다!

운좋은올뺴미님의 프로필 이미지
운좋은올뺴미

작성한 질문수

질문하기