-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
38 lines (31 loc) · 1008 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
37
38
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'Landmark' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Storage'
pod 'FirebaseAppCheck'
pod 'FirebaseFirestoreSwift'
target 'LandmarkTests' do
inherit! :search_paths
# Pods for testing
end
target 'LandmarkUITests' do
# Pods for testing
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
puts target.name
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
# if config.name == 'Debug'
# config.build_settings['OTHER_SWIFT_FLAGS'] = ['$(inherited)', '-Onone']
# config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Owholemodule'
# config.build_settings['CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER'] = 'NO'
# end
end
end
end