-
Notifications
You must be signed in to change notification settings - Fork 41
/
Segment-Appboy.podspec
56 lines (44 loc) · 1.68 KB
/
Segment-Appboy.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
54
55
56
Pod::Spec.new do |s|
s.name = "Segment-Appboy"
s.version = "4.6.1"
s.summary = "Braze Integration for Segment's analytics-ios library."
s.description = <<-DESC
Analytics for iOS provides a single API that lets you
integrate with over 100s of tools.
This is the Braze integration for the iOS library.
DESC
s.homepage = "https://github.com/appboy/appboy-segment-ios"
s.license = { :type => 'MIT' }
s.author = { "Appboy" => "[email protected]" }
s.source = { :git => "https://github.com/appboy/appboy-segment-ios.git", :tag => s.version.to_s }
s.platform = :ios, '11.0'
s.requires_arc = true
s.dependency 'Analytics'
s.default_subspec = 'Full-SDK'
s.subspec 'Full-SDK' do |default|
default.platform = :ios
default.dependency 'Appboy-iOS-SDK', '~>4.5.4'
default.source_files = 'Pod/Classes/**/*'
end
s.subspec 'tvOS' do |tv|
tv.platform = :tvos, '11.0'
tv.dependency 'Appboy-tvOS-SDK', '~>4.4.4'
tv.source_files = 'Pod/Classes/**/*'
end
s.subspec 'Core' do |core|
core.dependency 'Appboy-iOS-SDK/Core', '~>4.5.4'
core.source_files = 'Pod/Classes/**/*'
end
s.subspec 'InAppMessage' do |iam|
iam.dependency 'Appboy-iOS-SDK/InAppMessage', '~>4.5.4'
iam.source_files = 'Pod/Classes/**/*'
end
s.subspec 'NewsFeed' do |nf|
nf.dependency 'Appboy-iOS-SDK/NewsFeed', '~>4.5.4'
nf.source_files = 'Pod/Classes/**/*'
end
s.subspec 'ContentCards' do |cc|
cc.dependency 'Appboy-iOS-SDK/ContentCards', '~>4.5.4'
cc.source_files = 'Pod/Classes/**/*'
end
end