-
Notifications
You must be signed in to change notification settings - Fork 3
/
TealiumBraze.podspec
38 lines (30 loc) · 2.52 KB
/
TealiumBraze.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
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "TealiumBraze"
s.module_name = "TealiumBraze"
s.version = "3.4.0"
s.summary = "Tealium Swift and Braze integration"
s.description = <<-DESC
Tealium's integration with Braze for iOS.
DESC
s.homepage = "https://github.com/Tealium/tealium-ios-braze-remote-command"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "Commercial", :file => "LICENSE.txt" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.authors = { "Tealium Inc." => "[email protected]",
"jonathanswong" => "[email protected]",
"christinasund" => "[email protected]" }
s.social_media_url = "https://twitter.com/tealium"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.swift_version = "5.0"
s.platform = :ios, "12.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/Tealium/tealium-ios-braze-remote-command.git", :tag => "#{s.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.source_files = "Sources/*.{swift}"
# ――― Dependencies ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.dependency 'tealium-swift/Core', '~> 2.12'
s.ios.dependency 'tealium-swift/RemoteCommands', '~> 2.12'
s.ios.dependency 'BrazeKit', '~> 9.0'
s.static_framework = true
end