forked from webex/webex-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebexSDK.podspec
24 lines (23 loc) · 924 Bytes
/
WebexSDK.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
Pod::Spec.new do |s|
s.name = "WebexSDK"
s.version = "2.6.0"
s.summary = "Webex iOS SDK"
s.homepage = "https://developer.webex.com"
s.license = "MIT"
s.author = { "Webex SDK team" => "[email protected]" }
s.source = { :git => "https://github.com/webex/webex-ios-sdk.git", :tag => s.version }
s.ios.deployment_target = "10.0"
s.source_files = "Source/**/*.{h,m,swift}"
s.preserve_paths = 'Frameworks/*.framework'
s.vendored_frameworks = 'Frameworks/*.framework'
s.xcconfig = {'FRAMEWORK_SEARCH_PATHS' => '$(PODS_ROOT)/WebexSDK/Frameworks',
'ENABLE_BITCODE' => 'NO',
}
s.swift_version = '4.2'
s.dependency 'Alamofire', '= 4.9.0'
s.dependency 'ObjectMapper', '~> 3.3'
s.dependency 'AlamofireObjectMapper', '~> 5.1'
s.dependency 'SwiftyJSON', '~> 4.1'
s.dependency 'Starscream', '~> 4.0.4'
s.dependency 'KeychainAccess', '~> 3.1'
end