Skip to content

Commit

Permalink
Fix iOS pods versions
Browse files Browse the repository at this point in the history
  • Loading branch information
DeD1rk committed Oct 31, 2022
1 parent 091e388 commit 7a6fac1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,10 @@ end
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
target.build_configurations.each do |config|
if Gem::Version.new('11.0') > Gem::Version.new(config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'])
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
end
end
end
end

0 comments on commit 7a6fac1

Please sign in to comment.