facebook twitter hatena line email

Flutter/firebase/Analytics

提供: 初心者エンジニアの簡易メモ
2019年12月13日 (金) 14:58時点におけるAdmin (トーク | 投稿記録)による版 (firebaseのanalyticsをインストール)

移動: 案内検索

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

firebaseのanalyticsのサンプル

以下を追加する app.dart

import 'package:firebase_analytics/firebase_analytics.dart';
import 'package:firebase_analytics/observer.dart';
FirebaseAnalytics analytics = FirebaseAnalytics();
return new MaterialApp(
    title: 'hogeproject',
    home: SplashScreen(),
    navigatorObservers: [
        FirebaseAnalyticsObserver(analytics: analytics),
    ],
);