-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathsegment-appsflyer-ios.podspec
39 lines (31 loc) · 1.47 KB
/
segment-appsflyer-ios.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
version_appsflyerLib = '6.15.1'
version_plugin = '6.15.1'
Pod::Spec.new do |s|
s.name = "segment-appsflyer-ios"
s.version = version_plugin
s.summary = "AppsFlyer Integration for Segment's analytics-ios library."
s.description = <<-DESC
AppsFlyer is the market leader in mobile advertising attribution & analytics, helping marketers to pinpoint their targeting, optimize their ad spend and boost their ROI.
DESC
s.homepage = "https://github.com/AppsFlyerSDK/segment-appsflyer-ios"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Appsflyer" => "[email protected]" }
s.source = { :git => "https://github.com/AppsFlyerSDK/segment-appsflyer-ios.git", :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '12.0'
s.requires_arc = true
s.static_framework = true
s.swift_version = '4.0'
s.dependency 'Analytics'
s.default_subspecs = 'Main'
s.subspec 'Main' do |ss|
ss.ios.dependency 'AppsFlyerFramework',version_appsflyerLib
ss.tvos.dependency 'AppsFlyerFramework',version_appsflyerLib
ss.source_files = 'segment-appsflyer-ios/Classes/**/*'
end
s.subspec 'Strict' do |ss|
ss.ios.dependency 'AppsFlyerFramework/Strict',version_appsflyerLib
ss.tvos.dependency 'AppsFlyerFramework/Strict',version_appsflyerLib
ss.source_files = 'segment-appsflyer-ios/Classes/**/*'
end
end