Search code examples
flutterdartflutter-layoutflutter-ios

Can't run IOS application in Flutter


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