-
Notifications
You must be signed in to change notification settings - Fork 9
/
SensorsFocus.podspec
59 lines (50 loc) · 2.19 KB
/
SensorsFocus.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
Pod::Spec.new do |s|
s.name = 'SensorsFocus'
s.version = '0.7.3'
s.summary = 'The official iOS SDK of Sensors Focus.'
s.homepage = 'http://www.sensorsdata.cn'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/sensorsdata/sf-sdk-ios.git', :tag => 'v' + s.version.to_s}
s.author = 'Sensors Data'
s.platform = :ios
s.ios.deployment_target = '9.0'
s.requires_arc = true
s.cocoapods_version = '>= 1.5.0'
s.ios.framework = 'UIKit', 'Foundation'
s.dependency 'SensorsAnalyticsSDK', '>=4.5.23'
s.pod_target_xcconfig = { 'PRODUCT_BUNDLE_IDENTIFIER': 'com.sensorsdata.SensorsFocus'}
s.default_subspec = 'Dynamic'
base_dir = 'SensorsFocus/'
s.subspec 'Dynamic' do |a|
a.vendored_frameworks = base_dir + 'Dynamic/SensorsFocus.xcframework'
end
s.subspec 'Static' do |b|
b.vendored_frameworks = base_dir + 'Static/SensorsFocus.xcframework'
b.resource_bundles = { 'SensorsFocus' => ['SensorsFocus/Resources/**/*']}
end
s.subspec 'DynamicDiagnosis' do |c|
c.dependency 'SensorsDiagnosis','>=0.0.3'
c.vendored_frameworks = base_dir + 'DynamicDiagnosis/SensorsFocus.xcframework'
end
s.subspec 'StaticDiagnosis' do |d|
d.dependency 'SensorsDiagnosis','>=0.0.3'
d.vendored_frameworks = base_dir + 'StaticDiagnosis/SensorsFocus.xcframework'
d.resource_bundles = { 'SensorsFocus' => ['SensorsFocus/Resources/**/*']}
end
s.subspec 'Dynamic+IDM' do |e|
e.vendored_frameworks = base_dir + 'Dynamic+IDM/SensorsFocus.xcframework'
end
s.subspec 'Static+IDM' do |f|
f.vendored_frameworks = base_dir + 'Static+IDM/SensorsFocus.xcframework'
f.resource_bundles = { 'SensorsFocus' => ['SensorsFocus/Resources/**/*']}
end
s.subspec 'Dynamic+IDM+Diagnosis' do |g|
g.dependency 'SensorsDiagnosis','>=0.0.3'
g.vendored_frameworks = base_dir + 'Dynamic+IDM+Diagnosis/SensorsFocus.xcframework'
end
s.subspec 'Static+IDM+Diagnosis' do |h|
h.dependency 'SensorsDiagnosis','>=0.0.3'
h.vendored_frameworks = base_dir + 'Static+IDM+Diagnosis/SensorsFocus.xcframework'
h.resource_bundles = { 'SensorsFocus' => ['SensorsFocus/Resources/**/*']}
end
end