1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

firebase Flutter

Last updated at Posted at 2024-09-09

flutter firebase

この記事はflutterでfirebaseを接続するときにいつも忘れてしまうので、メモ代わりに作成した記事です。

接続方法

以下cmdで実行

npm install -g firebase-tools
firebase login

loginのIDがでてくればOK.

flutter pub global activate flutterfire_cli

macはここでpathを指定?

flutterfire configure

事前に作成したdatabaseを選択
私はよくこの質問が聞かれるので、「Which Android application id (or package name) do you want to use for this configuration, e.g. 'com.example.app'?」

androidのappレベルのbuild.gradleのapplicationIDを変更または、選択する。
(ここがよくわかりません。10文字以上入力できないようになっているので、いつも短い名前に変更します。)
dependenciesのinstall

flutter pub add firebase_core
flutter pub add cloud_firestore
main.dart

1
1
0

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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?