forked from customerio/customerio-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CustomerIO.podspec
53 lines (42 loc) · 2.17 KB
/
CustomerIO.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Cocoapods projects that provide multiple SDKs have a common naming pattern for installing pods:
# CustomerIO/DataPipelines
# This podspec allows that. It publishes aliases for the cocoapods we have already published.
# Example: CustomerIO/DataPipelines is an alias for the published pod CustomerIODataPipelines
Pod::Spec.new do |spec|
spec.name = "CustomerIO"
spec.version = "3.6.0" # 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.default_subspec = "DataPipelines"
# Using `= X.X.X` is required for pre-release versions of an SDK (alpha, beta)
# In the future, we can use: `~> X.X.X` which matches by semantic version rules.
spec.subspec "MessagingPush" do |ss|
ss.dependency "CustomerIOMessagingPush", "= #{spec.version.to_s}"
end
spec.subspec "DataPipelines" do |ss|
ss.dependency "CustomerIODataPipelines", "= #{spec.version.to_s}"
end
spec.subspec "Migration" do |ss|
ss.dependency "CustomerIOTrackingMigration", "= #{spec.version.to_s}"
end
spec.subspec "MessagingPushAPN" do |ss|
ss.dependency "CustomerIOMessagingPushAPN", "= #{spec.version.to_s}"
end
spec.subspec "MessagingPushFCM" do |ss|
ss.dependency "CustomerIOMessagingPushFCM", "= #{spec.version.to_s}"
end
spec.subspec "MessagingInApp" do |ss|
ss.dependency "CustomerIOMessagingInApp", "= #{spec.version.to_s}"
end
end