-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathPodfile
57 lines (44 loc) · 1.02 KB
/
Podfile
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Uncomment this line to define a global platform for your project
platform :ios, '12.0'
# Uncomment this line if you're using Swift
use_frameworks!
workspace 'MojioSDK.xcworkspace'
def base_pods
pod 'Alamofire'
pod 'SwiftyJSON'
pod 'KeychainSwift'
pod 'OHHTTPStubs'
pod 'OHHTTPStubs/Swift'
pod 'SwiftWebSocket', :git => 'https://github.com/mojio/SwiftWebSocket', :branch => 'master'
pod 'SwiftDate'
end
target 'Core' do
project 'MojioSDK.xcodeproj'
base_pods
end
target 'Accounts' do
project 'MojioSDK.xcodeproj'
base_pods
pod 'MojioCore', :path => '.'
end
target 'Images' do
project 'MojioSDK.xcodeproj'
base_pods
pod 'AlamofireImage'
pod 'MojioCore', :path => '.'
end
target 'Vehicles' do
project 'MojioSDK.xcodeproj'
base_pods
pod 'MojioCore', :path => '.'
end
target 'Pets' do
project 'MojioSDK.xcodeproj'
base_pods
pod 'MojioCore', :path => '.'
end
target 'Tests' do
base_pods
#pod 'OHHTTPStubs'
#pod 'OHHTTPStubs/Swift'
end