-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathPodfile
35 lines (29 loc) · 879 Bytes
/
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
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'MyTwitter' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for MyTwitter
pod 'SnapKit', '~> 3.2.0'
#pod 'ReactiveCocoa', '~> 6.0.0-alpha.1'
pod 'Alamofire', '~> 4.4.0'
pod 'RxSwift', '~> 4.0.0'
pod 'RxCocoa', '~> 4.0.0'
pod 'IQKeyboardManagerSwift', '~> 4.0.10'
pod 'SwiftyJSON', '~> 3.1.4'
pod 'XCGLogger', '~> 5.0.1'
pod 'MJRefresh', '~> 3.1.12'
pod 'RxGesture', '~> 1.2.1'
pod 'DateTools', '~> 2.0.0'
pod 'RealmSwift', '~> 3.0.1'
pod 'MBProgressHUD', '~> 1.0.0'
pod 'Kingfisher', '~> 4.6.4'
target 'MyTwitterTests' do
inherit! :search_paths
# Pods for testing
end
target 'MyTwitterUITests' do
inherit! :search_paths
# Pods for testing
end
end