-
Notifications
You must be signed in to change notification settings - Fork 5
/
Podfile
66 lines (53 loc) · 1.46 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
58
59
60
61
62
63
64
65
66
platform :ios, '12.0'
# ignore all warnings from all pods
inhibit_all_warnings!
workspace 'Miramax Fillms.xcworkspace'
project 'Miramax Fillms.xcodeproj'
use_frameworks!
target 'Domain' do
project 'Domain/Domain.project'
pod 'RxSwift', '~> 6.1.0'
end
target 'Data' do
project 'Data/Data.project'
pod 'RxSwift', '~> 6.1.0'
pod 'Moya/RxSwift', '~> 15.0'
pod "RxRealm", '~> 5.0.4'
pod 'ObjectMapper', '~> 4.2.0'
end
target 'Miramax Fillms' do
# rx
pod 'RxSwift', '~> 6.1.0'
pod 'RxCocoa', '~> 6.1.0'
pod 'RxDataSources', '~> 5.0.0'
pod 'RxSwiftExt', '~> 6.0.1'
pod "RxRealm", '~> 5.0.4'
pod 'Action', '~> 5.0.0'
# XCoordinator
pod 'XCoordinator', '~> 2.2.0'
pod 'XCoordinator/RxSwift', '~> 2.2.0'
# SwifterSwift
pod 'SwifterSwift/UIKit'
# others
pod 'SnapKit', '~> 5.0.0'
pod 'Kingfisher'
pod 'MKProgress'
pod 'ObjectMapper', '~> 4.2.0'
pod 'Moya/RxSwift', '~> 15.0'
pod 'Swinject', '~> 2.8.2'
pod 'RealmSwift', '~>10'
pod 'TagListView', '~> 1.0'
pod 'DeviceKit', '~> 4.0'
pod 'youtube-ios-player-helper', '~> 1.0.4'
pod 'MaterialComponents/BottomSheet', '~> 124.2.0'
pod 'FSCalendar'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
config.build_settings['CODE_SIGNING_REQUIRED'] = "NO"
config.build_settings['CODE_SIGNING_ALLOWED'] = "NO"
end
end
end