Reputation: 2565
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
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