Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Commit

Permalink
Updates Podfile
Browse files Browse the repository at this point in the history
• specific handling for target 'GoogleDataTransport' when setting the deployment target
  • Loading branch information
Frank Gregor committed Oct 24, 2019
1 parent bd09be2 commit 123a4f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions ios/Podfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
platform :ios, '12.2'
platform :ios, '12.4'

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
Expand Down Expand Up @@ -69,7 +69,10 @@ post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.2'
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.4'
if target.name == 'GoogleDataTransport' then
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.4'
end
end
end
end
2 changes: 1 addition & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,6 @@ SPEC CHECKSUMS:
url_launcher: a1c0cc845906122c4784c542523d8cacbded5626
video_player: 69c5f029fac4ffe4fc8a85ea7f7b793709661549

PODFILE CHECKSUM: f86c0501072256e26286ae47160edd21bfc33afb
PODFILE CHECKSUM: c1e498d7d72f3797843f7aa78f471fe09a55f161

COCOAPODS: 1.7.5

0 comments on commit 123a4f3

Please sign in to comment.