#症状
Macのストレージがいっぱいになってきたので、いらなそうなファイルを消していたら、iOSビルドができなくなった。
#エラーメッセージ
ld: framework not found Flutter
clang: error: linker command failed with exit code 1 (use -v to see invocation)
とか。
その後flutter cleanしたら、Pod installでもエラーが出た。
Flutter: Cocoapods The 'Pods-Runner' target has transitive dependencies that include static binaries: Flutter.framework
#解決
①ホーム直下に置いてあったflutterフォルダ内を、再インストールで更新してから、
②flutter cleanして、
③ios/Flutter/Flutter.frameworkを丸ごと削除して再ビルドしたら、自動生成してくれてビルド完了した。
https://stackoverflow.com/questions/50306019/flutter-cocoapods-the-pods-runner-target-has-transitive-dependencies-that-inc
①の大元のflutterSDKフォルダが狂ってて、生成されるios/Flutter/Flutter.frameworkも狂ってたってことだね。