-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPodfile
More file actions
36 lines (28 loc) · 951 Bytes
/
Podfile
File metadata and controls
36 lines (28 loc) · 951 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
31
32
33
34
35
36
platform :ios, '18.0'
source 'https://github.com/CocoaPods/Specs.git'
inhibit_all_warnings!
use_modular_headers!
project 'BluePlaquesLondon.xcodeproj'
target 'BluePlaquesLondon' do
pod 'GoogleMaps'
pod 'iOS-KML-Framework', '0.0.2'
pod 'TBXML', :path => 'BluePlaquesLondon/Dependencies/TBXML'
pod 'FirebaseAnalytics'
pod 'GTMNSStringHTMLAdditions'
target 'BluePlaquesLondonTests' do
inherit! :search_paths
pod 'OCMock', '~> 3.6.0'
pod 'OHHTTPStubs', '~> 6.1.0'
end
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '18.0'
if target.name == 'iOS-KML-Framework'
config.build_settings['HEADER_SEARCH_PATHS'] ||= []
config.build_settings['HEADER_SEARCH_PATHS'] << '$(SRCROOT)/../BluePlaquesLondon/Dependencies/TBXML/TBXML-Headers'
end
end
end
end