背景と環境
MacOS BigSur ver11.4でVS Codeを使用
以前までビルドをかけれていたソースが急にビルドがかけれなくなりました。
かなりハマったので解決方法を共有いたします。
エラー内容
Running "flutter pub get" in *APPNAME*...
Launching lib/main.dart on iPad (8th generation) in debug mode...
Upgrading contents.xcworkspacedata
Xcode build done. 10.9s
Failed to build iOS app
Error output from Xcode build:
↳
** BUILD FAILED **
Xcode's output:
↳
In file included from /Users/*USERNAME*/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.12+4/ios/Classes/FLTSharedPreferencesPlugin.m:5:
/Users/*USERNAME*/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.12+4/ios/Classes/FLTSharedPreferencesPlugin.h:5:9: fatal error: 'Flutter/Flutter.h' file not found
#import <Flutter/Flutter.h>
^~~~~~~~~~~~~~~~~~~
1 error generated.
note: Using new build system
note: Building targets in parallel
note: Planning build
note: Analyzing workspace
note: Constructing build description
note: Build preparation complete
Could not build the application for the simulator.
Error launching application on iPad (8th generation).
Exited (sigterm)
試したこと
Google検索をすると色々な方の記事で下記の対処法があったので試してみましたが、私は解消しませんでした。
flutter create .
flutter pub cache repair
cd ios
pod init
pod install
解決方法
pod setup
たったこれだけで解消しました。
コメントを残す