1
votes

I'm trying to install Google Analytics for iOS using cocoapods, and see this error:

[!] Unable to satisfy the following requirements:

'Google/Analytics' required by 'Podfile'

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

So, how can I get minimum deployment target for analytics? Documentation gives no clue. My app should support iOS 6.0, btw.

1
I also facing the same error, do you get any solution for this?user2526811
Nope. When I will find solution I will post an answer.kelin
I've managed to bypass problem by downloading SDK directly, without cocoapods: developers.google.com/analytics/devguides/collection/ios/v3/…kelin

1 Answers

0
votes

It is described here: cocoapods spec

"platforms": {
"ios": "5.0"

},

So right now the support is iOS 5 and up.