Open5
Flutterでの「Warning: CocoaPods not installed. Skipping pod install.」エラー対応備忘録
Android StudioでFlutterのiOSビルドを行ったときに発生したエラーについての備忘録
未だ完全解決はしていない
発生したエラー
Android StudioでiOSビルドをする際に以下のエラーが発生した
Warning: CocoaPods not installed. Skipping pod install.
CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin usage on the Dart side.
Without CocoaPods, plugins will not work on iOS or macOS.
For more info, see https://flutter.dev/platform-plugins
To install:
sudo gem install cocoapods
CocoaPods not installed or not in valid state.
Error launching application on iPhone 12 mini.
前提
FlutterとCocoaPodsはインストールされている
$ flutter --version
Flutter 1.22.6 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 9b2d32b605 (5 weeks ago) • 2021-01-22 14:36:39 -0800
Engine • revision 2f0af37152
Tools • Dart 2.10.5
$ pod --version
1.10.1
暫定的な対応
Android Studioをターミナルから起動することでエラーは発生しなくなった
$ open ./Applications/JetBrains\ Toolbox/Android\ Studio.app
確かにターミナルから起動したら治りました!ありがとうございます!
同じ問題に当たりました。PATH読めてないんでしょうか... ありがとうございますー
同じくターミナルから起動でエラー消えました!ありがとうございます!
こんなことがあるんですね。