forked from webex/webex-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WebexSDK.podspec
22 lines (22 loc) · 881 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
Pod::Spec.new do |s|
s.name = "WebexSDK"
s.version = "0.0.1"
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.xcconfig = {'FRAMEWORK_SEARCH_PATHS' => '$(PODS_ROOT)/WebexSDK/Frameworks',
'ENABLE_BITCODE' => 'NO',
}
s.vendored_frameworks = "Frameworks/*.framework"
s.dependency 'Alamofire', '~> 4.7.1'
s.dependency 'ObjectMapper', '~> 3.1'
s.dependency 'AlamofireObjectMapper', '~> 5.0'
s.dependency 'SwiftyJSON', '~> 4.0'
s.dependency 'Starscream', '~> 3.0.5'
s.dependency 'KeychainAccess', '~> 3.1'
end