This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Flurry-iOS-SDK.podspec
75 lines (62 loc) · 2.8 KB
/
Flurry-iOS-SDK.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Be sure to run `pod lib lint Flurry-iOS-SDK.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Flurry-iOS-SDK'
s.version = '12.1.1'
s.summary = 'Flurry SDK for iOS'
s.license = { :type => 'Commercial', :file => 'Licenses/Flurry-LICENSE.txt' }
s.description = 'FlurrySDK consists of: Flurry for analytics tracking and reporting.'
s.homepage = 'http://developer.yahoo.com/flurry'
s.author = { 'Flurry' => '[email protected]' }
s.source = { :git => 'https://github.com/flurry/Flurry-iOS-SDK.git', :tag => s.version.to_s }
s.platforms = { :ios => '10.0', :tvos => '10.0' }
s.requires_arc = false
s.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.user_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES' }
s.default_subspec = 'FlurrySDK'
s.subspec 'FlurrySDK' do |ss|
ss.ios.deployment_target = '10.0'
ss.ios.frameworks = 'Foundation', 'SystemConfiguration', 'UIKit', 'Security'
ss.ios.vendored_frameworks = 'Flurry_iOS_SDK.xcframework'
ss.ios.dependency 'Flurry-iOS-SDK/CrashReporter'
ss.tvos.deployment_target = '10.0'
ss.tvos.frameworks = 'Foundation', 'SystemConfiguration', 'UIKit', 'Security'
ss.tvos.vendored_frameworks = 'Flurry_iOS_SDK.xcframework'
ss.tvos.dependency 'Flurry-iOS-SDK/CrashReporter'
ss.watchos.deployment_target = '3.0'
ss.watchos.frameworks = 'Foundation', 'WatchConnectivity'
ss.watchos.vendored_frameworks = 'Flurry_iOS_SDK.xcframework'
end
s.subspec 'FlurryTVOS' do |ss|
ss.platform = :tvos, '10.0'
ss.frameworks = 'Foundation', 'SystemConfiguration', 'UIKit', 'Security'
ss.tvos.vendored_frameworks = 'Flurry_iOS_SDK.xcframework'
ss.tvos.dependency 'Flurry-iOS-SDK/CrashReporter'
end
s.subspec 'FlurryWatchOSSDK' do |ss|
ss.platform = :watchos, '3.0'
ss.frameworks = 'Foundation', 'WatchConnectivity'
ss.vendored_frameworks = 'Flurry_iOS_SDK.xcframework'
end
s.subspec 'FlurryConfig' do |ss|
ss.platform = :ios, '10.0'
ss.ios.vendored_frameworks = 'Flurry_Config.xcframework'
ss.dependency 'Flurry-iOS-SDK/FlurrySDK'
end
s.subspec 'FlurryMessaging' do |ss|
ss.ios.deployment_target = '10.0'
ss.ios.vendored_frameworks = "Flurry_Messaging.xcframework"
ss.tvos.deployment_target = '10.0'
ss.tvos.vendored_frameworks = "Flurry_Messaging.xcframework"
ss.dependency 'Flurry-iOS-SDK/FlurrySDK'
end
s.subspec 'CrashReporter' do |ss|
ss.ios.deployment_target = '10.0'
ss.tvos.deployment_target = '10.0'
ss.vendored_frameworks = "CrashReporter.xcframework"
end
end