-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathPWMapKit.podspec
More file actions
44 lines (37 loc) · 1.42 KB
/
PWMapKit.podspec
File metadata and controls
44 lines (37 loc) · 1.42 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Pod::Spec.new do |spec|
spec.name = 'PWMapKit'
spec.version = '3.16.2'
spec.license = { :type => 'Copyright', :text => 'Copyright 2009-present Phunware Inc. All rights reserved.' }
spec.summary = "Phunware's Mapping SDK for use with its Multiscreen-as-a-Service platform"
spec.homepage = 'https://github.com/phunware/maas-mapping-ios-sdk/'
spec.author = { 'Phunware, Inc.' => 'https://www.phunware.com' }
spec.social_media_url = 'https://twitter.com/phunware'
spec.platform = :ios, '15.5'
spec.source = { :git => 'https://github.com/phunware/maas-mapping-ios-sdk.git', :tag => "#{spec.version}" }
spec.documentation_url = 'https://phunware.github.io/maas-mapping-ios-sdk/'
spec.cocoapods_version = '>= 1.12.0'
spec.default_subspecs =
'Core',
'DeviceIdentity'
spec.subspec 'Core' do |subspec|
subspec.dependency 'PWLocation/Core', '~> 3.14.0'
subspec.dependency 'PINCache', '~> 3.0.4'
subspec.vendored_frameworks = 'Frameworks/PWMapKit.xcframework'
subspec.frameworks =
'CoreGraphics',
'CoreLocation',
'CoreServices',
'CoreTelephony',
'MapKit',
'QuartzCore',
'Security',
'SystemConfiguration'
end
spec.subspec 'DeviceIdentity' do |subspec|
subspec.dependency 'PWMapKit/Core'
subspec.dependency 'PWLocation/DeviceIdentity', '~> 3.14.0'
end
spec.subspec 'LimitedDeviceIdentity' do |subspec|
subspec.dependency 'PWMapKit/Core'
end
end