SDK does not contain 'libarclite' at the path...
2024. 12. 3. 13:58ㆍProgramming/Swift
반응형
# 오랜만에 Xcode를 실행시켜서 그동안 관리를 못했던 앱을 살짝 건드려보았습니다.
- 너무 오래 관리를 하지 않아서 그런지 새롭게 시작하는 기분이라 너무 하기가 싫더라구요^^;;
* pod install 를 하려고 보니 아래와 같은 에러가 나옵니다.
SDK does not contain 'libarclite' at the path '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a'; try increasing the minimum deployment target
Xcode 14.3 이상 버전에서 발생된 문제라고 합니다.
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
end
참고한 링크 입니다.
https://stackoverflow.com/questions/75574268/missing-file-libarclite-iphoneos-a-xcode-14-3
반응형
'Programming > Swift' 카테고리의 다른 글
cocoapods 설치 (0) | 2023.10.18 |
---|---|
[iOS15] navigation bar 오류 (0) | 2021.09.28 |
[itunesconnect] 수출 규정 관련 문서가 누락됨 (0) | 2020.07.03 |
[swift5] 시뮬레이터에 인증서 넣기 (0) | 2020.02.25 |
[Swift5] 아이폰 연결시 에러 (0) | 2020.02.03 |