-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
30 lines (25 loc) · 947 Bytes
/
Podfile
File metadata and controls
30 lines (25 loc) · 947 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
platform :ios, '14.0'
use_frameworks!
target 'SampleProject' do
pod 'R.swift', '5.2.2'
pod 'Shakuro.TaskManager'
pod 'Shakuro.HTTPClient'
pod 'Shakuro.CommonTypes'
pod 'SwiftyJSON', '5.0.0'
pod 'NVActivityIndicatorView', '5.1.1'
pod 'SDWebImage', '5.10.4'
pod 'Shakuro.iOS_Toolbox', :git => 'https://gitlab.com/shakuro-public/ios_toolbox.git', :commit => 'b447d2422d321098218095af47636fe12652230a'
pod 'SwiftLint'
end
# Post Install "error: IB Designables: Failed to render and update auto layout ..." fix
post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings.delete('CODE_SIGNING_ALLOWED')
config.build_settings.delete('CODE_SIGNING_REQUIRED')
end
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
end
end
end