-
Notifications
You must be signed in to change notification settings - Fork 20
/
CustomerIOMessagingPushFCM.podspec
34 lines (28 loc) · 1.75 KB
/
CustomerIOMessagingPushFCM.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
26
27
28
29
30
31
32
33
34
Pod::Spec.new do |spec|
spec.name = "CustomerIOMessagingPushFCM"
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'
path_to_source_for_module = "Sources/MessagingPushFCM"
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 = "CioMessagingPushFCM" # the `import X` name when using SDK in Swift files
spec.dependency "CustomerIOMessagingPush", "= #{spec.version.to_s}"
# Add FCM SDK as a dependency, as our SDK is designed to be compatible with it.
# No version is specified which means that by default, the latest version is installed for customers.
# Customers can override this by adding the pod to their Podfile themselves to specify a version they want to use.
spec.dependency "FirebaseMessaging", ">= 8.7.0", "< 12"
end