The iOS Simulator deployment targets is set to 7.0, but the range of supported deployment target version for this platform is 8.0 to 12.1

iOS picture iOS · Feb 15, 2019 · Viewed 115k times · Source

I'm getting this below warning message in my Xcode 10.1.

The iOS Simulator deployment targets is set to 7.0, but the range of supported deployment target version for this platform is 8.0 to 12.1.

My simulator os in 12.1 Xcode 10.1

And i updated my pod file.

enter image description here

My deployment target is 9.0

enter image description here

In my target

enter image description here

Answer

Tao-Nhan Nguyen picture Tao-Nhan Nguyen · Oct 13, 2019

You can setup your podfile to automatically match the deployment target of all the podfiles to your current project deployment target like this :

post_install do |pi|
    pi.pods_project.targets.each do |t|
      t.build_configurations.each do |config|
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
      end
    end
end