-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
42 lines (32 loc) · 1.06 KB
/
Podfile
File metadata and controls
42 lines (32 loc) · 1.06 KB
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
platform :ios, '18.0'
project 'BostonFreedomTrail.xcodeproj'
target :BostonFreedomTrail do
inhibit_all_warnings!
use_frameworks!
# Analytics - Migrated from deprecated GoogleAnalytics to Firebase
pod 'FirebaseAnalytics'
# Networking & Location
pod 'ReachabilitySwift'
# Maps
pod 'GoogleMaps'
# UI Components
pod 'MaterialComponents/Typography'
pod 'MaterialComponents/Buttons'
pod 'MaterialComponents/Snackbar'
target :BostonFreedomTrailTests do
pod 'OHHTTPStubs'
end
end
# Post-install hook to ensure all pods use minimum deployment target
# This ensures consistency with the main project target and avoids libarclite errors
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
# Set minimum deployment target to 18.0 for all pods
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 18.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '18.0'
end
end
end
end
install! 'cocoapods', warn_for_unused_master_specs_repo: false