-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
55 lines (40 loc) · 1.05 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
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'
inhibit_all_warnings!
target 'Movies24i' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
target 'MCoreKit' do
# Pods for MCoreKit
end
target 'MUIKit' do
# Pods for MUIKit
end
# Pods for Movies24i
pod 'RxSwift', '~> 4.5.0'
pod 'RxCocoa', '~> 4.5.0'
# Network & Location
pod 'Alamofire', '~> 4.8.2'
pod 'AlamofireImage', '~> 3.5.2'
pod 'ReachabilitySwift', '~> 4.3.1'
# Logging & crash reporting
# UI/UX
pod 'NVActivityIndicatorView', '~> 4.7.0'
pod 'XCDYouTubeKit', '~> 2.7.3'
pod 'MaterialComponents/Snackbar', '~> 82.0.0'
# Data model
pod 'RealmSwift', '~> 3.14.1'
# 3rd Party
# Other
target 'Movies24iTests' do
inherit! :search_paths
# Pods for testing
pod 'RxBlocking', '~> 4.5.0'
pod 'RxTest', '~> 4.5.0'
end
target 'Movies24iUITests' do
inherit! :search_paths
# Pods for testing
#pod 'OCMock', '~> 2.0.1'
end
end