forked from mapbox/mapbox-maps-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMapboxMaps.podspec
29 lines (22 loc) · 1.04 KB
/
MapboxMaps.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Pod::Spec.new do |m|
maps_version = '10.7.0-rc.1'
m.name = 'MapboxMaps'
m.version = maps_version
m.summary = 'Vector map solution for iOS with full styling capabilities.'
m.description = 'Metal-based vector map solution for iOS with full styling capabilities.'
m.homepage = 'https://docs.mapbox.com/ios/maps/guides/'
m.license = { type: 'Commercial', file: 'LICENSE.md' }
m.author = { 'Mapbox' => 'mobile@mapbox.com' }
m.social_media_url = 'https://twitter.com/mapbox'
m.documentation_url = 'https://docs.mapbox.com/ios/maps/api-reference/'
m.source = { :git => 'https://github.com/mapbox/mapbox-maps-ios.git', :tag => "v#{maps_version}" }
m.platform = :ios
m.ios.deployment_target = '11.0'
m.swift_version = '5.3'
m.source_files = 'Sources/MapboxMaps/**/*.{swift,h}'
m.resources = ['Sources/**/*.{xcassets,strings}', 'Sources/MapboxMaps/MapboxMaps.json']
m.dependency 'MapboxCoreMaps', '10.7.0-rc.1'
m.dependency 'MapboxCommon', '22.1.0-rc.1'
m.dependency 'MapboxMobileEvents', '1.0.8'
m.dependency 'Turf', '~> 2.0'
end