Cocoa Pods error with pod install

Viewed 31373

[!] Unable to satisfy the following requirements:

  • Google/SignIn required by Podfile
  • Google/SignIn required by Podfile
  • Google/SignIn required by Podfile
  • Google/SignIn required by Podfile
  • Google/SignIn (= 1.3.2) required by Podfile.lock

Specs satisfying the Google/SignIn dependency were found, but they required a higher minimum deployment target.

Specs satisfying the Google/SignIn dependency were found, but they required a higher minimum deployment target.

Specs satisfying the Google/SignIn dependency were found, but they required a higher minimum deployment target.

Specs satisfying the Google/SignIn dependency were found, but they required a higher minimum deployment target.

Specs satisfying the Google/SignIn (= 1.3.2) dependency were found, but they required a higher minimum deployment target.

9 Answers

Your deployment target has to be moved up to the highest minimum target required by any dependency. enter image description here Also, make sure the global platform in your Podfile matches the highest minimum target required by any dependency.

When .podfile

platform :ios, '<version>'

is not equal to .podspec

<variable>.platform = :ios, "<version>"

you get next error:

dependency were found, but they required a higher minimum deployment target

[Local CocoaPod]

I solved via:

pod 'Alamofire', '~4.0'

To

pod 'Alamofire'

I went to my Podfile and changed my deployment target to the highest one that was in my Pods/Local Podspecs

Related