Sumit Sharma
Sumit Sharma

Reputation: 212

Compiling for iOS 11.0, but module 'ESPProvision' has a minimum deployment target of iOS 13.0

enter image description herecompiling for iOS 11.0, but module 'ESPProvision' has a minimum deployment target of iOS 13.0: /Users/sumitsharma/Library/Developer/Xcode/DerivedData/espidfrn1-ddsrubfjldnfvphfpnpvvfbalpmg/Build/Products/Debug-iphonesimulator/ESPProvision/ESPProvision.swiftmodule/arm64-apple-ios-simulator.swiftmodule

Upvotes: 0

Views: 462

Answers (1)

NuttyJackJ
NuttyJackJ

Reputation: 320

As the error states, you have a deployment target 11.0 when in fact it is supposed to be 13.0.

So just go into XCode, select your project and change the iOS deployment target.

After that, just clean your build, run pod install and it should work.

EDIT:

Change minimum deployment target as well: Minimum deployment

XCode

Upvotes: 1

Related Questions