에러 메세지
IPHONEOS_DEPLOYMENT_TARGET is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.0.99
Podfile 수정
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if Gem::Version.new('8.0') > Gem::Version.new(config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'])
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '8.0'
end
end
end
end
'App > iOS' 카테고리의 다른 글
[ iOS ] Organize 에서 App 목록을 삭제하고 싶은 경우 (0) | 2022.01.29 |
---|---|
[ iOS ] CocoaPods 버전 충돌 시 재설치 (0) | 2021.11.09 |
[ iOS ] 설치된 에뮬레이터 체크 (0) | 2021.07.07 |
[ iOS ] 출시 환경 설정 (0) | 2021.05.06 |
[ iOS ] App Store Connect 썸네일 설정 (0) | 2021.05.05 |