-
Notifications
You must be signed in to change notification settings - Fork 3
/
AdobeBranchExtension.podspec
30 lines (24 loc) · 1.23 KB
/
AdobeBranchExtension.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
Pod::Spec.new do |s|
s.name = "AdobeBranchExtension"
s.version = "4.0.0"
s.summary = "The Branch extension for Adobe Cloud Platform on iOS."
s.description = <<-DESC
#Add the power of Branch deep linking and attribution to your Adobe Marketing Cloud app.
#With Branch's platform, mobile developers and marketers can leverage
#their app content to improve discoverability and optimize mobile campaigns.
DESC
s.homepage = "https://github.com/BranchMetrics/AdobeBranchExtension-iOS"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Branch Metrics" => "[email protected]" }
s.compiler_flags = %[-DADOBE_BRANCH_VERSION=@\\"#{s.version}\\"]
s.source = { :git => "https://github.com/BranchMetrics/AdobeBranchExtension-iOS.git", :tag => s.version.to_s }
s.platform = :ios, '12.0'
s.requires_arc = true
s.static_framework = true
s.source_files = 'AdobeBranchExtension/Classes/**/*'
s.dependency 'AEPCore', '~> 5.1.0'
s.dependency 'AEPLifecycle', '~> 5.1.0'
s.dependency 'AEPIdentity', '~> 5.1.0'
s.dependency 'AEPSignal', '~> 5.1.0'
s.dependency 'BranchSDK', '~> 3.4.4'
end