-
Notifications
You must be signed in to change notification settings - Fork 18
/
Split.podspec
22 lines (20 loc) · 1.27 KB
/
Split.podspec
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 = 'Split'
s.module_name = 'Split'
s.version = '3.0.0'
s.summary = 'iOS SDK for Split'
s.description = <<-DESC
This SDK is designed to work with Split, the platform for controlled rollouts, serving features to your users via the Split feature flag to manage your complete customer experience.
DESC
s.homepage = 'http://www.split.io'
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { 'Patricio Echague' => '[email protected]', 'Sebastian Arrubia' => '[email protected]', 'Fernando Martin' => '[email protected]'}
s.source = { :git => 'https://github.com/splitio/ios-client.git', :tag => s.version.to_s }
s.platforms = { :ios => "12.0", :osx => "10.13", :watchos => "7.0", :tvos => "12.0" }
s.frameworks = 'Foundation'
s.swift_versions = ['4.0', '4.2', '5.0', '5.1', '5.2', '5.3']
s.resources = "Split/Storage/split_cache.xcdatamodeld"
s.pod_target_xcconfig = { 'HEADER_SEARCH_PATHS' => '$(PROJECT_DIR)/Split/Common/Utils/JFBCrypt', 'SWIFT_INCLUDE_PATHS' => '${PROJECT_DIR}/Split/Common/Utils/JFBCrypt' }
s.source_files = 'Split/**/*.{swift}','Split/Common/Utils/JFBCrypt/*.{h,m}'
s.exclude_files = 'Split/Common/Utils/Lib/*'
end