Closed6
flutterでのiOSシュミレーターのビルドエラーについて [CocoaPods]
こんなエラーが出た
Error output from CocoaPods:
↳
[!] Automatically assigning platform `iOS` with version `9.0` on target `Runner` because no platform was
specified. Please specify a platform for this target in your Podfile. See
`https://guides.cocoapods.org/syntax/podfile.html#platform`.
Error running pod install
この記事を参考にPodfileを削除して見ても同じエラー
Podfile内の # platform :ios, '9.0'
の部分がコメントアウトになっていたので、コメントアウトを外した上で platform :ios, '10.0'
に変更
それでも解決できなく、下記の記事のようにCocoaPodsのRubyのバージョンが低いのではないかということで、 $ gem install cocoapods
でCocoaPodsの更新。
Error: CocoaPods's specs repository is too out-of-date to satisfy dependencies.
To update the CocoaPods specs, run:
pod repo update
Error running pod install
こういう感じのエラーが出たんで、pod repo update
を実行
done!!
参考記事
このスクラップは2021/08/10にクローズされました