증상
빌드 시 아래 에러 발생
error in Xcode File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a
해결
팟 타겟 버전을 특정 버전 이상으로 올려서 해결 https://forums.developer.apple.com/forums/thread/728021
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'] = '11.0'
end
end
end
end
'iOS' 카테고리의 다른 글
[iOS] rsync error: some files could not be transferred (0) | 2024.05.12 |
---|---|
Xcode iOS Device 목록 표시안되는 문제 (0) | 2020.11.06 |
테이블 뷰 최적화 방법 (0) | 2020.10.20 |
iOS 13 업데이트 (0) | 2020.08.30 |
댓글