-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPodfile
42 lines (33 loc) · 1 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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '13.0'
use_frameworks!
# Pods used for development only.
def development_pods
# A linter to gather code metrics and enforce Swift style and conventions.
# https://github.com/realm/SwiftLint
# License: MIT
pod 'SwiftLint'
# Formats the Swift code to be consistent with the coding style guidelines.
# https://github.com/nicklockwood/SwiftFormat
# License: MIT
pod 'SwiftFormat/CLI'
end
# Targets
target 'NavigationStack' do
development_pods
end
target 'NavigationStackExample' do
development_pods
end
# Post install
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# Ignore any warnings from pods.
config.build_settings['GCC_WARN_INHIBIT_ALL_WARNINGS'] = "YES"
config.build_settings['SWIFT_SUPPRESS_WARNINGS'] = "YES"
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = "YES"
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = "13.0"
end
end
end