Questions tagged [firebase-analytics]

Google Analytics for Firebase is a free, out-of-the-box analytics solution that provides actionable insights based on app usage and user engagement. It integrates across Firebase and Google and provides you with unlimited reporting for up to 500 event types that you define using the SDK. Google Analytics reports help you understand clearly how your users behave, enabling you to make informed decisions regarding app marketing and performance optimizations.

About Google Analytics for Firebase

Google Analytics for Firebase (originally called Firebase Analytics) is a component of the Firebase suite of tools for cross-platform application development.

  • Unlimited reporting of 500 event types, each with up to 25 attributes
  • One dashboard to view user behavior and cross-network campaign performance
  • Demographic segmentation, including age, gender, and location, available out-of-the-box
  • Export raw data to BigQuery for custom querying

Related tags

2416 questions
20
votes
4 answers

How to export Firebase analytics data

I'm trying to figure out if it's possible to export all the Firebase Analytics data to an excel spreadsheet, similar to how you can do it with Google Analytics. From what I can find the only way to go about doing it is to link with BigQuery then do…
random
  • 8,568
  • 12
  • 50
  • 85
19
votes
0 answers

How Firebase Analytics calculates (unique) Users

Since I noticed a misalignment between the count of Users and the count of User IDs on Google Analytics (for mobile apps), I need to understand technically how Google counts Users in mobile apps. While I have extremely clear that on Web Users are…
Brigo
  • 1,086
  • 1
  • 12
  • 36
19
votes
1 answer

Firebase events dedup in Big Query - best practices?

There seems to be 1-2% of duplicates in the Firebase analytics events exported to Big Query. What are the best practices to remove these? Atm the client does not send a counter with the events (per session). This would provide an unambiguous way of…
Vesa Palonen
  • 262
  • 1
  • 8
19
votes
2 answers

How to create funnel with event's parameter value in Firebase?

I have a game with a lot of levels (Something like 2000). I want to create a funnel to see players' progression through these levels and balance out too-hard ones. I cannot send an unique event for every level (e.g. "Level 0040 Completed") because…
PNarimani
  • 614
  • 7
  • 23
19
votes
2 answers

How can we use Firebase Analytics with an expo based react-native app

I am trying to add Firebase Analytics (FA) to my react-native app. Actually, I didn't find a problem to put Google Analytics (GA) using this library expo-analytics. But apparently Firebase analytics is more powerful and it is really built for mobile…
19
votes
2 answers

How does Firebase Analytics define a session?

Firebase Analytics has a number of stats around "Sessions" (like "Sessions per user" and "Average session length"), but how exactly does Firebase Analytics define a session?
Todd Kerpelman
  • 16,875
  • 4
  • 42
  • 40
19
votes
3 answers

How do you create a closed funnel?

how is it possible to create closed funnel? Ie I would like to see how many users made some action and then uninstalled app. ie. event_lost_game -> uninstall. Currently funnels are open so it doesn't tell you how many user's made step 1 and then…
Martin Vandzura
  • 3,047
  • 1
  • 31
  • 63
18
votes
7 answers

Could not find com.google.firebase:firebase-analytics-ktx:. Required by: project :app

I followed the steps in registering my mobile application in firestore but when I try running the code I get the following error. I have downloaded the google services.json from firestore while registering my app and added it to android/app level of…
Ashna Nizam
  • 181
  • 1
  • 1
  • 3
18
votes
3 answers

Firebase - Perform Analytics from database/firestore data

I am using Firebase as my authentication and database platform in my React Native-Expo app. I have not yet decided if I will be using the realtime-database or Firestore database. I need to perform statistical analysis on daily data gathered from my…
user9410919
18
votes
3 answers

Firebase Analytics in Xamarin Forms

Can we get custom events such as say Button 1 was pressed using Firebase Analytics in a Xamarin Forms Project ?
Ashish Kumar
  • 755
  • 2
  • 6
  • 25
18
votes
1 answer

How is user_engagement event generated in firebase analytics?

I have seen a param named firebase_screen_class (along with engagement_time_msec, firebase_event_origin and firebase_screen_id) in the user_engagement event in bigQuery, it contains the name of activity classes in my app. Please, can you explain…
josue.0
  • 775
  • 1
  • 10
  • 23
18
votes
6 answers

Exclude testing device from Firebase Analytics logging

I am sure that Firebase is counting all my development work too in its analytics. I open my app like hundred times a day to debug and test on a few devices, it's really skewing up my readings. I have used a function to get me a somewhat unique ID to…
Sagar
  • 3,107
  • 2
  • 26
  • 35
18
votes
2 answers

Firebase Analytics incorrect active user count

I am integrating my app with Firebase and I have added the ability for users to create accounts using their email, FaceBook, Google accounts. My app is still under development and yet to be pushed to the app store. Its only available on iOS right…
ArdenDev
  • 4,051
  • 5
  • 29
  • 50
18
votes
3 answers

FireBase error -9806, SSL error -1200

I'm using the new FireBase SDK introduced at I/O 2016 and I'm getting this error after integrating with my app. This happens at app launch. 2016-08-06 06:28:06.237 MyApp[49084:2511094] CFNetwork SSLHandshake failed (-9806) 2016-08-06 06:28:06.238…
ArdenDev
  • 4,051
  • 5
  • 29
  • 50
17
votes
0 answers

What is equivalent HitBuilders.ScreenViewBuilder for Firebase

Previously, to track screen view in Google Analytics, I'm using the following code snippet. It is very convenient, as I need not to pass Activity and Context around. To use it, I just need to call Utils.trackGAView("ShareDialogFragment"); any where…
Cheok Yan Cheng
  • 47,586
  • 132
  • 466
  • 875