🐡

【Flutter/エラー】「'Flutter/Flutter.h' file not found」

2022/12/30に公開

エラー

Podfile編集後に、'Flutter/Flutter.h' file not found を含むエラーが発生した。

原因

下記、① の行を誤削除したため。

ios/Podfile
post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)   <- ①
  end
end

対応

① の行を復活。

Discussion