iOS Simulator deployment target set to 8.0, but the range of supported deployment target versions is 9.0 to 15.0.99

Viewed 5944

Am working on a completely new project. Just created it two days ago and am having issues when I am trying to build and run it on the IOS Simulator. Here is the message:

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.0.99. (in target 'gRPC-C++' from project 'Pods')

Strangest thing is that I also created a new project for another app last week and didn't get this issue.

Any help in solving this would be really appreciated.

Many thanks

1 Answers

to solve this you can try upgrade the OS target to 9.0.

To do this open your project on XCode and change the iOS Deployment Target of PROJECT - Runner from 8.0 to 9.0 like this image.

Then check if the Deployment Info of TARGETS - Runner is 9.0 too. like this image.

Related