ponnamkarthik / FlutterToast

Toast Plugin for Flutter
MIT License
1.44k stars 353 forks source link

Error (Xcode): File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphonesimulator.a #431

Open GitHubStuff opened 1 year ago

GitHubStuff commented 1 year ago

Appears not to work with Xcode 14.3 command line tools.

yutae commented 1 year ago

@GitHubStuff, Would you like to add the code below to Podfile?

      target.build_configurations.each do |config|
      # https://developer.apple.com/forums/thread/725300
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
      end
romreed commented 1 year ago

@yutae this work for me! thank you

jiangkang commented 1 year ago

I also encountered the same problem

adrianorios commented 1 year ago

Me too after update Flutter 3.10

kotdroidZero commented 1 year ago

@GitHubStuff, Would you like to add the code below to Podfile?

      target.build_configurations.each do |config|
      # https://developer.apple.com/forums/thread/725300
        config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
      end

yes this solution worked for me also