forked from mojio/mojio-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
32 lines (26 loc) · 800 Bytes
/
Podfile
File metadata and controls
32 lines (26 loc) · 800 Bytes
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
# Uncomment this line to define a global platform for your project
# platform :ios
# Uncomment this line if you're using Swift
use_frameworks!
workspace 'MojioSDK.xcworkspace'
target 'MojioSDK' do
project 'MojioSDK.xcodeproj'
pod 'Alamofire', '3.5.0'
pod 'SwiftyJSON', '2.3.2'
pod 'ObjectMapper', '~> 1.1'
pod 'KeychainSwift', :git => 'https://github.com/marketplacer/keychain-swift', :branch => 'swift_2_3'
pod 'OHHTTPStubs'
pod 'OHHTTPStubs/Swift'
pod 'SwiftWebSocket', '2.6.4'
end
target 'MojioSDKTests' do
pod 'OHHTTPStubs'
pod 'OHHTTPStubs/Swift'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '2.3'
end
end
end