iOS version from Podfile not taken into account #1576
-
My Podfile has Full Podfile# Uncomment the next line to define a global platform for your project platform :ios, '12.0'CocoaPods analytics sends network stats synchronously affecting flutter build latency.ENV['COCOAPODS_DISABLE_STATS'] = 'true' project 'Runner', { def flutter_root File.foreach(generated_xcode_build_settings_path) do |line| require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) flutter_ios_podfile_setup target 'Runner' do Comment the next line if you don't want to use dynamic frameworksuse_frameworks! flutter_install_all_ios_pods File.dirname(File.realpath(FILE)) Pods for Runnerend post_install do |installer| |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @TheCarpetMerchant, please check your project targets' iOS Deployment Target in Xcode and confirm that they are all set to 12.0 or above. |
Beta Was this translation helpful? Give feedback.
I'm on Windows, but you message made me think of looking for targets by runner profile. And indeed I found such a thing in the
project.pbxproj
file and it works. Thanks !