The iOS Simulator deployment targets is set to 7.0

2020-02-18 04:40发布

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

6条回答
该账号已被封号
2楼-- · 2020-02-18 04:50

If anyone came here from react native issue, just delete the /build folder and type react-native run ios

查看更多
做个烂人
3楼-- · 2020-02-18 04:57

I solved this problem, I changed build system to Legacy Build System from New Build System

In Xcode v10+, select File > Project Settings

In previous Xcode, select File > Workspace Settings

enter image description here

Change Build System to Legacy Build System from New Build System --> Click Done.

enter image description here

查看更多
女痞
4楼-- · 2020-02-18 05:04

Try these steps:

  1. Delete your Podfile.lock
  2. Delete your Podfile
  3. Build Project
  4. Add initialization code from firebase
  5. cd /ios
  6. pod install
  7. run Project

This was what worked for me.

查看更多
甜甜的少女心
5楼-- · 2020-02-18 05:04

Follow the next steps

1- Click on pods.

2- Select each project and target and click on build settings.

3- Under development section change iOS version to anything more than 8.0 (better to try the same project version).

4- Repeat this for every other project in your pods then run the app.

solution

查看更多
做个烂人
6楼-- · 2020-02-18 05:05

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
查看更多
祖国的老花朵
7楼-- · 2020-02-18 05:08

The problem is in your pod files deployment target iOS Version not in your project deployment target iOS Version, so you need to change the deployment iOS version for your pods as well to anything higher than 8.0 to do so open your project workspace and do this:

1- Click on pods.

2- Select each project and target and click on build settings.

3- Under Deployment section change the iOS Deployment Target version to anything more than 8.0 (better to try the same project version).

4- Repeat this for every other project in your pods then run the app.

see the photo for details enter image description here

查看更多
登录 后发表回答