티스토리 뷰

Xcode14.3 업데이트 이후 많이들 겪는 오류라고합니다. 제가 알고 있는 이유는 업데이트 후 사용하고있는 Pods 라이브러리중에 지원하지 않는 버전 때문으로 파악했는데 저는 알다시피 주니어 개발자.. 아니라면 꼭 댓글로 알려주세요.

 

우선 StackOverFlow에서 찾은 해결 방법입니다. 

 

 

 

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

 

Try updating your ios/Podfile. Change 13.0 with the version you have at the top of the file.

팟파일을 변경하라는데 이게 뭐지 싶더라구요.. 이해는 하고 고치고 싶은데..
그래서 저는 아니 팟에서 사용하는 라이브러리 타겟 버전만 올려주면 되는거 아닌가!! 싶어서 Xcode 네비게이션영역 검색창에 

 

IPHONEOS_DEPLOYMENT_TARGET을 쳤더니 사용하고 있는 라이브러리들의 Target버전이 주르륵 뜨는데 FSCalendar가 8.0으로 유독 낮더라구요.. 이걸 11.0으로 해줬더니 잘 돌아가긴합니다만!!

사실 이것도 FSCalendar의 타겟이 8.0인 이유가 있을텐데 FSCalendar에서 문제가 있진 않을지 살펴봐야겠어요..

 

 

이렇게 해결해서 안되는거라면 댓글로 많은 구조 바랍니다!!

(혹시 몰라서 FSCalendar는 9.0으로 낮춰서 사용하고있습니당)

 

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

 

Missing file `libarclite_iphoneos.a` in Xcode 14.3 after update flutter and Xcode

I have flutter project, I'm trying to run the iOS version but I get error after I update flutter and Xcode to the latest version, I use firebase core plugin error: Could not build the precompiled

stackoverflow.com

«   2025/03   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31
공지사항
링크
Total
Today
Yesterday