Reputation: 542
I am building an app targeted to iOS 7 and I want to use Mapbox. I added
pod 'Mapbox'
to my Podfile, but 'pod install' responds with:
[!] Unable to find a specification for Mapbox
.
I cannot change back to platform :ios, '5.0' because I have other libraries that require the later version. Is there a CocoaPod for MapBox that works with iOS 7?
Thanks!
Upvotes: 2
Views: 3733
Reputation: 5128
The old closed issue at https://github.com/mapbox/mapbox-ios-sdk/issues/230 isn't the problem here.
This is: https://github.com/mapbox/mapbox-ios-sdk/issues/377
Which details the fix for now:
pod 'Mapbox', :git => 'https://github.com/mapbox/mapbox-ios-sdk', :tag => '1.1.0'
Upvotes: 0