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
1
vote
0 answers

Firebase analytics session duration calculation error

Firebase analytics is calculating session duration's wrongly. As per documentation, session times out after app is put in background for 30 min, if app is maximised after 30 min, then new session is generated and all the events are attributed to new…
ked
  • 2,426
  • 21
  • 24
1
vote
1 answer

How to know 'At what time app is being used' using Firebase Analytics

I am using firebase analytics in my app for analysis. But, I am not getting how to know the time interval in a day at which time app is being used more or less.
kchopda
  • 312
  • 4
  • 16
1
vote
0 answers

Firebase event parameters not being logged with method #1, but works with method #2. Why?

Currently, I initialize Firebase Analytics in my application class like this: public class App extends MultiDexApplication { public static FirebaseAnalytics mFirebaseAnalytics; @Override public void onCreate() { …
user4913694
  • 466
  • 1
  • 8
  • 19
1
vote
1 answer

Daily Retention with Filter in BigQuery

I am using a query to calculate daily retention on my Firebase Analytics data exported to BigQuery. It is working well and the numbers match with the numbers in Firebase, but when I try to filter the query by a cohort of users, the numbers don't add…
1
vote
0 answers

Has anyone noticed strange UIPasteboard behaviour when using apps which integrate Google services?

I just opened an iOS app (App Store version) I made which includes the Google AdMob and Firebase SDKs. As the app was loading, I saw the standard iOS alert for pasting contents from iCloud's Universal Clipboard feature. My understanding is that this…
Ricky
  • 3,101
  • 1
  • 25
  • 33
1
vote
1 answer

How to solve the Error: "FirebaseInstanceId: Google Play services missing or without correct permission."?

I catch this problem after add Firebase analytics to my Kotlin project, but my application working fluently. Although searching solution from Google but seems like its does not have solution to solve this. I want to know why this error appears and…
1
vote
0 answers

Firebase Analytics Log Events is unable to show me the custom bundle value in the dashboard even a day

This is how I am logging my custom bundle to the Firebase Analytics : params.putString("event_name", event_name); params.putBoolean("env", BuildConfig.DEBUG_MODE); params.putString("user_id", user_id); …
Aman Verma
  • 3,155
  • 7
  • 30
  • 60
1
vote
2 answers

Firebase Analytics for TVOS

I am using google analytics in my Apple TV app. Now, I want to switch it to Firebase analytics. But I found that firebase doesn't officially supports tvos. Does anybody knows workaround for this. I want to implement just the analytics part of…
Ruchi
  • 411
  • 4
  • 13
1
vote
0 answers

Do screen_view events get logged automatically in iOS extensions?

We're switching over to using Firebase for analytics from the old GAI SDK. I have it set up and working in our app and app extension. Each uses it's own plist from Firebase to match the bundleID. What I'm finding is that the automatic logging of…
SlashDevSlashGnoll
  • 2,141
  • 1
  • 12
  • 15
1
vote
1 answer

Firebase data is not exporting to BigQuery after release of new versions of my app

I have exported analytics data from big query.It was working till the new version is released. After release of new version i could not see any data in BigQuery, but I can see the data in Firebase report/console, but not in BigQuery. Could you…
Pradeep
  • 11
  • 5
1
vote
1 answer

View analytics for a specific device

I'm doing a project in Unity that includes Firebase Analytics. The project is an iOS App that is distributed to a small number of iPads across the country. The client wants to be able to look at the analytics for each specific device in each area.…
HollyC
  • 81
  • 5
1
vote
0 answers

Don't see data, which was exported from Firebase to BigQuery

I have exported analytics data from firebase to big query. But I don't see events from some of app version. These versions are in release, but they are available only to me, not for all users. I see the data in Firebase report, but not in…
1
vote
1 answer

With Firebase can I track something like which percentage of users uses Night Mode versus Day Mode?

I have a dark theme in my app, is it possible to track the split between Dark vs Light with Firebase? I know I could track something like "night" or "day" on launch but it'd just be a total number of events rather than an easily digestible split…
Doug Smith
  • 29,668
  • 57
  • 204
  • 388
1
vote
2 answers

Using Google Analytics SDK and Firebase SDK together

I'm having a crash on [FIRApp configure] step in my AppDelegate's didFinishLaunchingWithOptions method. Crash gives me completely no information. But I'm using Google Analytics SDK in my app as well. Maybe that's could be the reason? So my question…
1
vote
1 answer

Calculating current user return rate in BigQuery

I am trying to calculate CURR (current user return rate, see https://lloydmelnick.com/2019/02/05/lifetime-value-part-26-my-most-valuable-retention-kpis/) with data imported from Firebase into BigQuery. I tried to create three columns to identify…