29

[!] 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.

Skander Fathallah
  • 443
  • 1
  • 5
  • 10

9 Answers9

62

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.

Ashildr
  • 1,663
  • 1
  • 16
  • 25
3

It's pretty self-explanatory. Your deployment target has to be moved up to the highest minimum target required by any dependency. Check what iOS version Google/SignIn requires. If this checks out, make sure all your deployment targets set a satisfactory minimum target version.

diatrevolo
  • 2,726
  • 25
  • 45
2

I solved the problem. I selected my project at the top of my project navigator -> General -> Deployment info -> Deployment Target -> (Set the the most current)

2

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]

yoAlex5
  • 21,739
  • 5
  • 148
  • 151
  • This is what I needed to find the minimum deployment target required by the offending plugin. The console output specifies the offending plugin (in OPs case, `Google/SignIn`) but does not specify the minimum deployment version number the plugin requires. Thanks! – troyshu Aug 19 '21 at 14:18
1

i solved it by removing my Google/SignIn version and installing again my pods.

Skander Fathallah
  • 443
  • 1
  • 5
  • 10
1

I solved via:

pod 'Alamofire', '~4.0'

To

pod 'Alamofire'
Relay Just
  • 15
  • 2
Winner
  • 45
  • 1
  • 4
  • 16
1

For me, my minimum target is already high enough. I need a pod update ThePackageName (WARN: this will change the version you are using). See https://github.com/CocoaPods/CocoaPods/issues/4373 for more details.

ch271828n
  • 13,130
  • 3
  • 38
  • 64
0

I think Google/SignIn SDK supports iOS7 or later. Try a higher minimum deployment target.

Pankaj
  • 387
  • 1
  • 2
  • 13
0

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

Ryker
  • 376
  • 2
  • 8