forked from mapbox/mapbox-core-maps-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MapboxCoreMaps.podspec
27 lines (18 loc) · 902 Bytes
/
MapboxCoreMaps.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
Pod::Spec.new do |m|
version = '11.4.0-rc.1'
m.name = 'MapboxCoreMaps'
m.version = 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/'
m.license = { type: 'Commercial', file: 'LICENSE.md' }
m.author = { 'Mapbox' => '[email protected]' }
m.social_media_url = 'https://twitter.com/mapbox'
m.documentation_url = 'https://docs.mapbox.com/ios/beta/maps/guides/install/'
m.source = { http: "https://api.mapbox.com/downloads/v2/mobile-maps-core/releases/ios/packages/#{version.to_s}/MapboxCoreMaps.xcframework-dynamic.zip" }
m.platform = :ios
m.ios.deployment_target = '11.0'
m.requires_arc = true
m.vendored_frameworks = 'MapboxCoreMaps.xcframework'
m.dependency 'MapboxCommon', '~> 24.4.0-rc'
end