FlutterToast icon indicating copy to clipboard operation
FlutterToast copied to clipboard

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

Open GitHubStuff opened this issue 1 year ago • 5 comments

Appears not to work with Xcode 14.3 command line tools.

GitHubStuff avatar Apr 02 '23 22:04 GitHubStuff

@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

yutae avatar Apr 03 '23 09:04 yutae

@yutae this work for me! thank you

romreed avatar Apr 03 '23 11:04 romreed

I also encountered the same problem

jiangkang avatar May 12 '23 15:05 jiangkang

Me too after update Flutter 3.10

adrianorios avatar May 14 '23 03:05 adrianorios

@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

kotdroidZero avatar May 30 '23 04:05 kotdroidZero