iOS/Errors

[iOS-Error] The ios simulator deployment~~ 에러

유훈 | Yuhun 2022. 2. 28. 02:57
반응형

에러명

the ios simulator deployment target 'iphoneos_deployment_target' is set to 8.0, but the range of supported deployment target versions is 9.0 to 15.2.99. 

 

다음의 에러가 발생했는데 지원 버전과 설정 버전이 맞지 않아 발생하는 에러라고 합니다.

 

해결법

pod 파일에 가서 다음을 추가하시고 install 하니 해결되었습니다.

붙이는 위치는 end 바로 위라고 생각하시면 됩니다.

  post_install do |installer|
    installer.pods_project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '타겟 버전'
      end
    end
  end

 

반응형