Reputation: 12001
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.
Upvotes: 1
Views: 857
Reputation: 3414
It is described here: cocoapods spec
"platforms": {
"ios": "5.0"
},
So right now the support is iOS 5 and up.
Upvotes: 0