forked from Leanplum/Leanplum-iOS-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLeanplum-iOS-LocationAndBeacons.podspec
22 lines (22 loc) · 1.11 KB
/
Leanplum-iOS-LocationAndBeacons.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'Leanplum-iOS-LocationAndBeacons'
version = `cat sdk-version.txt`
s.version = version
s.summary = 'Supplementary Leanplum pod for geofencing and iBeacons support.'
s.description = 'Use LeanplumLocation instead if you do not need support for iBeacons.'
s.homepage = 'https://www.leanplum.com'
s.license = { :type => 'Commercial', :text => 'See https://www.leanplum.com/tos' }
s.author = { 'Leanplum' => '[email protected]' }
s.social_media_url = 'https://twitter.com/leanplum'
s.platform = :ios, '9.0'
s.requires_arc = true
s.source = { :git => 'https://github.com/Leanplum/Leanplum-iOS-SDK.git', :tag => s.version.to_s}
s.source_files = 'LeanplumSDKLocation/LeanplumSDKLocation/Classes/**/*'
s.resource_bundles = {'LeanplumLocation' => ['LeanplumSDKLocation/LeanplumSDKLocation/*.{xcprivacy}']}
s.frameworks = 'CoreLocation'
s.documentation_url = 'https://docs.leanplum.com/'
s.dependency 'Leanplum-iOS-SDK', "~> 6.0"
s.module_name = 'LeanplumLocationAndBeacons'
s.pod_target_xcconfig = { 'GCC_PREPROCESSOR_DEFINITIONS' => 'LP_BEACON=1' }
s.swift_versions = '5.0'
end