-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
32 lines (26 loc) · 1.07 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
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
target 'ZMoney' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'DomainModule', :path => 'Modules/DomainModule', :testspec => ['Tests']
pod 'DataModule', :path => 'Modules/DataModule'
pod 'NetworkingModule', :path => 'Modules/NetworkingModule', :testspec => ['Tests']
pod 'CommonModule', :path => 'Modules/CommonModule'
# Temporary moved Presentation module to main app because Xcode preview doesnot work
# for static library
pod 'SwiftLint'
pod 'HorizonCalendar'
pod 'SwiftDate'
pod 'SwiftUI-SimpleToast', :git => 'https://github.com/sanzaru/SimpleToast.git'
# POST_INSTALL
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
config.build_settings['CODE_SIGN_IDENTITY'] = ""
end
end
end
end