-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLandmarksID.podspec
More file actions
33 lines (33 loc) · 1.59 KB
/
LandmarksID.podspec
File metadata and controls
33 lines (33 loc) · 1.59 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
Pod::Spec.new do |s|
s.name = "LandmarksID"
s.version = "2.5.2"
s.summary = "LANDMARKS ID is a real world insights platform that helps brands learn more about their customers, locations and competitors"
s.description = "LANDMARKS ID is a mobile location intelligence platform that provides brands and marketers privacy compliant location data on their customers real world behaviours, brand affinities and purchase intents"
s.homepage = "https://www.landmarksid.com"
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
LANDMARKS ID iOS SDK
Copyright © 2020 LANDMARKS ID. All rights reserved.
By downloading or using the LANDMARKS ID SDK for iOS, You agree to the LANDMARKS ID Terms and Conditions
https://www.landmarksid.com/about.html
and acknowledge that such terms govern your use of and access to the iOS SDK.
LICENSE
}
s.author = { "LANDMARKSID" => "https://www.landmarksid.com" }
s.platform = :ios
s.source = { :git => 'https://github.com/LANDMARKSID/LandmarksID-iOS.git', :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '10.0'
s.documentation_url = 'https://docs.landmarksid.com/docs/overview.html'
s.frameworks = 'CoreLocation', 'CoreTelephony', 'SystemConfiguration', 'Foundation', 'AdSupport', 'UIKit'
s.weak_framework = 'AppTrackingTransparency'
s.default_subspec = 'LO'
s.subspec 'LO' do |sp|
sp.vendored_frameworks = 'LandmarksID-LO/LandmarksIDSDK.framework'
end
s.subspec 'LOD' do |sp|
sp.dependency 'BluedotPointSDK', '~> 15.3'
sp.vendored_frameworks = 'LandmarksID-LOD/LandmarksIDSDK.framework'
end
end