-
Notifications
You must be signed in to change notification settings - Fork 20
/
CustomerIOMessagingPush.podspec
25 lines (21 loc) · 1.22 KB
/
CustomerIOMessagingPush.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
Pod::Spec.new do |spec|
spec.name = "CustomerIOMessagingPush"
spec.version = "3.5.1" # Don't modify this line - it's automatically updated
spec.summary = "Official Customer.io SDK for iOS."
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" => "[email protected]" }
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 # platforms SDK supports. Leave blank and it's assumed SDK supports all platforms.
spec.ios.deployment_target = "13.0"
# spec.osx.deployment_target = "10.15"
# spec.tvos.deployment_target = '13.0'
spec.source_files = "Sources/MessagingPush/**/*"
spec.exclude_files = "Sources/**/*{.md}"
spec.module_name = "CioMessagingPush" # the `import X` name when using SDK in Swift files
spec.dependency "CustomerIOCommon", "= #{spec.version.to_s}"
end