ios,swift2023. 4. 17. 16:06

[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

 

[참조] https://fomaios.tistory.com/entry/%ED%95%B4%EA%B2%B0%EB%B2%95-%ED%8F%AC%ED%95%A8-The-iOS-Simulator-deployment-target-IPHONESDEVELOPMENTTARGET-is-set-to-80but-the-range-of-suppoted-deployment-target-vesions-is-90-to-14499

 

[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

 

Posted by thdeodls85