-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPodfile
More file actions
35 lines (26 loc) · 656 Bytes
/
Podfile
File metadata and controls
35 lines (26 loc) · 656 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
33
34
35
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'demo' do
use_frameworks!
###Network
pod 'Alamofire', '~> 4.7'
pod 'RxAlamofire', '~> 4.0.0'
pod 'AlamofireObjectMapper', '~> 5.0.0'
###Json Parse
pod 'ObjectMapper', '~> 3.0'
###Rxswift
pod 'RxSwift', '~> 4.0.0'
pod 'RxCocoa', '~> 4.0.0'
###Localization
pod 'Localize-Swift'
def testing_pods
pod 'Quick', '~> 1.2'
pod 'Nimble', '~> 7.0'
end
target 'demoTests' do
testing_pods
end
target 'demoUITests' do
testing_pods
end
end