facebook twitter hatena line email

「Flutter/firebase/Analytics」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(firebaseから設定ファイルをDL)
(設定ファイルの設定)
行6: 行6:
 
#google-services.jsonをandorid/appの下へ
 
#google-services.jsonをandorid/appの下へ
 
#GoogleService-Info.plistをios/Runnerの下へ
 
#GoogleService-Info.plistをios/Runnerの下へ
 +
 +
==firebaseのanalyticsをインストール==
 +
pubspec.yaml
 +
<pre>
 +
dependencies:
 +
  firebase_core: ^0.2.5
 +
  firebase_analytics: ^1.0.4
 +
</pre>

2019年12月13日 (金) 14:48時点における版

firebaseから設定ファイルをDL

  1. https://console.firebase.google.com
  2. androidとiosのプロジェクトを作成し、google-services.jsonと、GoogleService-Info.plistをDL

設定ファイルの設定

  1. google-services.jsonをandorid/appの下へ
  2. GoogleService-Info.plistをios/Runnerの下へ

firebaseのanalyticsをインストール

pubspec.yaml

dependencies:
  firebase_core: ^0.2.5
  firebase_analytics: ^1.0.4