-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCioFirebaseWrapper.podspec
More file actions
28 lines (22 loc) · 1.14 KB
/
CioFirebaseWrapper.podspec
File metadata and controls
28 lines (22 loc) · 1.14 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
Pod::Spec.new do |spec|
spec.name = "CioFirebaseWrapper"
spec.version = "1.0.0"
spec.summary = "Customer.io Firebase Wrapper SDK for iOS."
spec.homepage = "https://github.com/customerio/customerio-ios-fcm"
spec.documentation_url = 'https://customer.io/docs/sdk/ios/'
spec.changelog = "https://github.com/customerio/customerio-ios-fcm/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-fcm.git', :tag => spec.version.to_s }
spec.swift_version = '5.5'
spec.cocoapods_version = '>= 1.11.0'
spec.platform = :ios
spec.ios.deployment_target = "15.0"
path_to_source_for_module = "Sources"
spec.source_files = "#{path_to_source_for_module}/**/*{.swift}"
spec.module_name = "CioFirebaseWrapper"
# Add main SDK dependency
spec.dependency "CustomerIOMessagingPushFCM", ">= 4.0.0"
# Add Firebase dependency - major version 12 up to next major version
spec.dependency "FirebaseMessaging", ">= 8.7.0", "< 13.0.0"
end