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
1 answer

Track Share events to FirebaseAnalytics

I have a share function on the app that allows users to share app to others, but I want to track number of shares. The share item is on the action bar, not on the app dropdown menu. @Override public boolean onCreateOptionsMenu(Menu menu) { //…
Ndheti
  • 266
  • 3
  • 18
1
vote
1 answer

Sending GA for Firebase event via Measurement Protocol

I'm using Google Analytics property for Firebase project, and I'm trying to send some event via Measurement Protocol but as far as I see there is no specific MP parameters for such events. Is there any way to do this?
1
vote
1 answer

How to programmatically find out if a user was converted from Adwords in iOS, or is it possible to turn this data into a User Property?

I'm working on a project that can get conversions either from Google Adwords or Apple SearchAds, and I'm trying to find a way to display this conversion data on the same view. The best way so far that I've found out would be to map this conversions…
JRafaelM
  • 861
  • 2
  • 10
  • 23
1
vote
2 answers

Firebase logging error on automatic events

I am logging some custom events on Firebase Analytics, but some errors keep getting logged for automatic events (such as screen_view) along with the custom events, whether I call them explicitly or not. When I log regular custom events (a button…
sednanre
  • 478
  • 5
  • 16
1
vote
1 answer

Is it possible to get country-wise retention in firebase? How?

DAU can be filtered country-wise by adding specific code but it seems retention cannot be filtered. Is there a way to get countrywise retention?
1
vote
1 answer

Forward Firebase Analytics Events with Firebase Cloud Functions to 3rd Parties

Context: We have natively integrated Firebase Analytics Events in our app, I need to now forward these events to 3rd Party marketing & attribution platforms. As of today, I can either implement: Google Tag Manager (GTM), or Pass events by using…
1
vote
0 answers

How to implement firebase analytics in ReactNative - Android

I have an ReactNative App. I am trying to add firebase analytics into it. It is working very well for iOS but it is giving me list of errors in Android. This is my Build.gradle file apply plugin: "com.android.application" import…
BeingExpert
  • 523
  • 1
  • 5
  • 16
1
vote
1 answer

Analytics not recognized

Been following the Firebase setup guide. The setup process worked, but my project doesn't recognize the Analytics type: Analytics.logEvent // use of unresolved identifier 'Analytics' Xcode autocomplete shows AnalyticsConfiguration, but nothing…
Kelvin Lau
  • 6,373
  • 6
  • 34
  • 57
1
vote
0 answers

Why doesn't Firebase Analytics pass IDFA if Android app can?

I'm getting app events through Firebase analytics on Android, and when I query the data in BigQuery I find that many (not all) of the devices don't have a "resettable_device_id" (which is the IDFA according to:…
PandaZ
  • 127
  • 3
  • 12
1
vote
1 answer

Inconsistency in number of users in analytics console

In the Firebase Analytics console for my app, number of users for screen_view event and first_open event are different. Users who have fired screen_view event are around 5% more than the users who have fired first_open . Shouldn't this number be…
Pranshu
  • 430
  • 6
  • 13
1
vote
0 answers

Blocking firebase analytics events doesnt work with GTM

I am using firebase analytics in my app, and i track events like this: public static String EVENT_MAIN_ACTIVITY_OPEN = "EVENT_MAIN_ACTIVITY_OPEN"; mFirebaseAnalytics = FirebaseAnalytics.getInstance(this); Bundle bundle = new Bundle(); …
Alex D.
  • 1,424
  • 15
  • 40
1
vote
0 answers

Configure multiple build variant in Android Studio and Firebase Console in Android

Initially I configured my application to Firebase console with Events and Reports, etc., are showing in Fire base console. But I have 3 build environment like Debug, Staging & Production. I would like to show individual report based on environment…
1
vote
1 answer

Firebase Audience Targeting on Count Operators

I use Firebase Analytics & Audiences for event tracking & push notification campaigns. I want to target my app's users that did not have an in_app_purchase across their entire lifetime. I created the following tests in the Firebase Analytics…
d_-
  • 1,391
  • 2
  • 19
  • 37
1
vote
1 answer

first_name user property is not logged, is it reserved in firebase analytics?

I integrated firebase analytics in my app. Have set some User Properties too. I have registered those properties in console and it works fine but except for now property. Name of that beautiful property is first_name. :). I don't find it in…
cgr
  • 4,578
  • 2
  • 28
  • 52
1
vote
2 answers

BigQuery Export schema - how to export complete event column from firebase

I already link the firebase to bigquery, and everyday a new table gets created with the date stamp. The columns within the export can be found in the following link: https://support.google.com/firebase/answer/7029846?hl=en BUT, there is not firebase…