10
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【Flutter × Firebase】FlutterFire CLI インストール時の$flutterfire configureで発生したエラー解決方法

Last updated at Posted at 2022-10-28

エラー内容

FlutterでFirebaseを利用するための設定で遭遇したエラー。
Flutter プロジェクト ディレクトリから次のコマンドを実行して、アプリ構成ワークフロー作成する際に発生した。

実行コマンド

$ flutterfire configure

エラー文

Unhandled exception:
Exception: /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in `require': cannot load such file -- xcodeproj (LoadError)
        from /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0/rubygems/core_ext/kernel_require.rb:54:in `require'
        from -e:1:in `<main>'

解決

エラーの通りxcodeprojがない。
なのでインストールする。

$ gem install xcodeproj --user-install

参考

xcodeprojはXcodeプロジェクトの依存関係を管理するCocoaPodsで利用されていて、
RubyスクリプトからXcodeプロジェクトを作成および変更ができるライブラリ。

10
3
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?