반응형
Xcode 14.3 이상 버전에서 Pod 관련 에러 발생한 내용을 기록합니다.
에러 내용:
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
Ref.
https://stackoverflow.com/questions/75574268/missing-file-libarclite-iphoneos-a-xcode-14-3
반응형
'iOS > Xcode' 카테고리의 다른 글
[iOS/Xcode] EXC_BAD_ACCESS (0) | 2024.03.08 |
---|---|
[iOS/Xcode] Xcode Archive Stuck (0) | 2024.03.08 |
[iOS/Xcode] Version of Xcode is incompatible with version of the OS on the device (0) | 2022.06.17 |
[iOS/Xcode] 스토리보드 없이 프로젝트 개발 설정 (0) | 2022.05.15 |
[iOS/Xcode] 소스코드 공백 표시 (3) | 2021.12.10 |
댓글