[ios]the ios deployment target 'iphoneos_deployment_target' is set to 11.0 to 해결방법
pod 안에서 11.0 설정해주면 된다.
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
end
end
end
[Error 해결법 포함] The iOS Simulator deployment target 'IPHONES_DEVELOPMENT_TARGET' is set to 8.0,but the range of suppote
안녕하세요 Foma 입니다! 오늘 만난 건 에러는 아니고 경고인데요. 바로 제목과 같이 'The iOS Simulator deployment target 'IPHONES_DEVELOPMENT_TARGET' is set to 8.0~~~' 라는 경고였습니다. 열심히 스택오버플로우에
fomaios.tistory.com
'ios,swift' 카테고리의 다른 글
[Xcode]products folder not visible 해결방법 (0) | 2023.04.19 |
---|---|
[ios]Xcodeproj Unknown object version (56). (RuntimeError) (0) | 2023.04.19 |
[Xcode]product name 변경방법 (0) | 2023.04.17 |
[ios]Info.plist contained no UIScene configuration dictionary (looking for configuration named "(no name)") 해결방법 (0) | 2023.04.10 |
[ios]FileManager 파일앱에 보일 수 있게 권한 설정하는 방법 (0) | 2023.04.05 |