LoginSignup
0
0

More than 3 years have passed since last update.

FirebaseErrorの解決法 (備忘録)

Posted at

あらすじ

先日、React NativeとFirebaseでアプリを作成していたら、こんなエラーに遭遇しました。
スクリーンショット 2020-08-21 14.54.34.png

 Errorの理由

Firebaseのinitialize methodが何度も呼び出されているからです。

 解決方法

FirebaseのinitilizeをこのIF文で囲みましょう。

App.js
// Initialize Firebase
if (!firebase.apps.length) {
  firebase.initializeApp(firebaseConfig);
}
0
0
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
0
0