-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
37 lines (30 loc) · 849 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
36
platform :ios, '14'
use_frameworks!
use_modular_headers!
inhibit_all_warnings! # Ignore warnings from pods
# Use the new CDN.
# https://blog.cocoapods.org/CocoaPods-1.7.2/
source 'https://cdn.cocoapods.org/'
# Pods
target 'WinstonBoilerPlate' do
# RxSwift
pod 'RxSwift', '~> 5.1.1'
pod 'RxCocoa', '~> 5.1.1'
pod 'RxRelay'
pod 'RxSwiftExt', '~> 5'
# Image loading/caching
pod 'Nuke', :git => '[email protected]:kean/Nuke.git', :tag => '10.11.2'
pod 'NukeUI', :git => '[email protected]:kean/NukeUI.git', :tag => '0.8.3'
# UI
pod "TinyConstraints"
pod 'Alamofire', '~> 5.2.1'
end
#end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# Force deploy targets
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end