Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow ClusterKit to work with the latest version of Mapbox #91

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions ClusterKit.podspec
Expand Up @@ -24,7 +24,7 @@ Pod::Spec.new do |s|
s.platform = :ios, '7.0'
s.requires_arc = true
s.default_subspecs = 'Core'

s.subspec 'Core' do |ss|
ss.frameworks = 'MapKit'
ss.source_files = 'Sources/ClusterKit/**/*.{h,m}'
Expand All @@ -37,7 +37,7 @@ Pod::Spec.new do |s|
# Like GoogleMaps sdk (googlemaps/google-maps-ios-utils#23) YandexMapKit is statically built,
# which mean we can't use them as subspec dependency yet. Better to keep both
# GoogleMaps and YandexMapKit commented until both of them are dynamically built!

# s.subspec 'GoogleMaps' do |ss|
# ss.platform = :ios, '8.0'
# ss.dependency 'ClusterKit/Core'
Expand All @@ -55,7 +55,7 @@ Pod::Spec.new do |s|
s.subspec 'Mapbox' do |ss|
ss.platform = :ios, '9.0'
ss.dependency 'ClusterKit/Core'
ss.dependency 'Mapbox-iOS-SDK', '~> 5.0'
ss.dependency 'Mapbox-iOS-SDK', '~> 6.2'
ss.source_files = 'Sources/Mapbox'
end

Expand Down