Can't run IOS application in Flutter

Issue

Here is the image of error code i already try with pod update and repo pod update and clean derived data

enter image description here

Solution

Just add this lines to your Podfile

post_install do |installer_representation|
  installer_representation.project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['ARCHS'] = 'armv7 armv7s'
    end
  end
end

Flutter

  • ios
    • Podfile

Answered By – Anandh Krishnan

Answer Checked By – Marilyn (FlutterFixes Volunteer)

Leave a Reply

Your email address will not be published. Required fields are marked *