Zin Win Htet
Zin Win Htet

Reputation: 2565

How to solve this pod issue "CocoaPods could not find compatible versions for pod" for iOS project?

I put new pods into project pod file and tried to install. Then I received this error in Terminal.

[!] CocoaPods could not find compatible versions for pod "xxxxxxxxxxxxxxx":
  In Podfile:
    xxxxxxxxxxxxxxx

Specs satisfying the `xxxxxxxxxxxxxxx` dependency were found, but they required a higher minimum deployment target.

Upvotes: 2

Views: 1393

Answers (1)

Paul Beusterien
Paul Beusterien

Reputation: 29547

Update the minimum iOS version to what's required by the requested podspecs. Add something like this to the Podfile:

platform :ios, '13.0'

Upvotes: 3

Related Questions