-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathCustomerIOLocation.podspec
More file actions
27 lines (22 loc) · 1.16 KB
/
CustomerIOLocation.podspec
File metadata and controls
27 lines (22 loc) · 1.16 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
Pod::Spec.new do |spec|
spec.name = "CustomerIOLocation"
spec.version = "4.4.1" # Don't modify this line - it's automatically updated
spec.summary = "Official Customer.io SDK for iOS - Location Module"
spec.homepage = "https://github.com/customerio/customerio-ios"
spec.documentation_url = 'https://customer.io/docs/sdk/ios/'
spec.changelog = "https://github.com/customerio/customerio-ios/blob/#{spec.version.to_s}/CHANGELOG.md"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "CustomerIO Team" => "win@customer.io" }
spec.source = { :git => 'https://github.com/customerio/customerio-ios.git', :tag => spec.version.to_s }
spec.swift_version = '5.3'
spec.cocoapods_version = '>= 1.11.0'
spec.platform = :ios
spec.ios.deployment_target = "13.0"
path_to_source_for_module = "Sources/Location"
spec.source_files = "#{path_to_source_for_module}/**/*{.swift}"
spec.resource_bundle = {
"#{spec.module_name}_Privacy" => "#{path_to_source_for_module}/Resources/PrivacyInfo.xcprivacy"
}
spec.module_name = "CioLocation"
spec.dependency "CustomerIOCommon", "= #{spec.version.to_s}"
end