forked from sensorsdata/abtesting-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSensorsABTesting.podspec
More file actions
22 lines (19 loc) · 908 Bytes
/
SensorsABTesting.podspec
File metadata and controls
22 lines (19 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'SensorsABTesting'
s.version = "1.0.1"
s.summary = 'The official iOS/macOS SDK of Sensors A/B Testing.'
s.homepage = 'http://www.sensorsdata.cn'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/sensorsdata/abtesting-sdk-ios.git', :tag => 'v' + s.version.to_s}
s.author = 'Sensors Data'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.13'
s.module_name = "SensorsABTest"
s.requires_arc = true
s.cocoapods_version = '>= 1.5.0'
s.ios.framework = 'UIKit', 'Foundation'
# 依赖 SA 最低版本
s.dependency 'SensorsAnalyticsSDK', '>=4.5.6'
s.source_files = 'SensorsABTest/**/*.{h,m}'
s.public_header_files = 'SensorsABTest/**/SensorsABTestConfigOptions.h', 'SensorsABTest/**/SensorsABTest.h', 'SensorsABTest/**/SensorsABTestExperiment.h'
end