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
40
votes
2 answers

Why are the custom events of Firebase analytics not shown on dashboard?

I have integrated firebase into my Android application. I am sending custom events as follows : Bundle bundle = new Bundle(); bundle.putString("First Category", "First catValue"); bundle.putString("sub Cat", "sub CatValue"); …
Prashant
  • 4,474
  • 8
  • 34
  • 82
39
votes
4 answers

Completely disable Firebase/Analytics to stop console spam on app startup

I've installed Google/SignIn cocoapod into my application (which I need to support GoogleDrive), but it depends on Google/Core which depends on FirebaseAnalytics. I don't want or need FirebaseAnalytics. FirebaseAnalytics spams the developer console…
JosephH
  • 37,173
  • 19
  • 130
  • 154
39
votes
4 answers

Using Firebase in .NET

I want to implement Firebase into my .NET WPF Desktop Application. I can't find anything useful on the internet about this topic, it seems like it's completely unsupported. There is only a Xamarin NuGet package. Is there any possibility to do this?…
Christian Klemm
  • 1,455
  • 5
  • 28
  • 49
38
votes
10 answers

Xcode 12: build Error on FIRAnalyticsConnector

After upgrading to Xcode 12, my project doesn't build for the simulator anymore. The error I get is: ld: in ...…
themenace
  • 2,601
  • 2
  • 20
  • 33
37
votes
14 answers

framework not found FirebaseAnalytics

I added Google Analytics by CocoaPod into my project, but my app crashed and gave the following error. ld: framework not found FirebaseAnalytics clang: error: linker command failed with exit code 1 (use -v to see invocation) What should i do to…
Nuibb
  • 1,800
  • 2
  • 22
  • 36
36
votes
9 answers

Disabling firebase automatic screen reporting

Is there a way to disable Firebase analytics automatic screen reporting? I have a few UIViewCOntroller's that i don't want to be reported. So i want to manage the screen reporting my self. Setting FirebaseAutomaticScreenReportingEnabled to NO didn't…
ilan
  • 4,402
  • 6
  • 40
  • 76
36
votes
3 answers

Can we delete User properties from Firebase Analytics?

Firebase Analytics has a 'User properties', when we created one, we have 2 fields: name and description. When this property is created, I just have one option, which is edit. This edit option only gives permission to change the description but not…
HubDev
  • 371
  • 1
  • 3
  • 3
36
votes
4 answers

Android Firebase Analytics Custom Events Reporting in Console

Accept my apologies in advance if this is the incorrect place to post this question as I am unsure what would be. What I am trying to accomplish is to record a custom even using Firebase analytics that produces a similar report in the Firebase…
ez4nick
  • 9,756
  • 12
  • 37
  • 69
34
votes
4 answers

How to debug Firebase on iOS AdHoc build

The only way to debug Firebase is to pass -FIRAnalyticsDebugEnabled on arguments passed on launch. It's working in debug mode with my iOS device connected but I would like to deploy an AdHoc build so QA can test it without Xcode. But it seems…
Antoine Gamond
  • 802
  • 1
  • 10
  • 19
33
votes
1 answer

How event "first_open" in firebase analytic count?

In my firebase analytic event "first_open" shows 489 download till 7th july but in play store stats it shows 347 download till 7th july, i don't know why these no. is differ. Definition of first_open is:- When a user opens the app for the first…
Mukesh Gupta
  • 1,373
  • 3
  • 17
  • 42
32
votes
0 answers

Event Data Collected by Firebase Analytics DebugView Is Incomplete

I'm sending events to Firebase Analytics and find out that part of the event parameters is missing in DebugView. Below are two identical events sending to Firebase and I've checked that all the parameters are there in Xcode debug console. The…
Michael Revlis
  • 1,463
  • 11
  • 14
32
votes
0 answers

Apple Mach -O Linker (Id) Warning in Xcode 8.3 release

I have just updated my Xcode to 8.3 release. And now I'm getting many warnings like: "Pointer not aligned at address.." from my pods. I see FirebaseAnalytics and FirebaseCore pods trigger this issue. What should I do in this case? Fixed with 'pod…
iamburak
  • 3,508
  • 4
  • 34
  • 65
31
votes
12 answers

Header file (FirebaseCore/FirebaseCore.h) not found, despite importing Firebase.framework

I am trying to manually import and use the Firebase framework in my iOS application. I am starting off with the basic bare minimum Analytics framework (then I'll add the rest of the frameworks). I followed this tutorial in order to manually import…
Supertecnoboff
  • 6,406
  • 11
  • 57
  • 98
31
votes
10 answers

All firebase libraries must be either above or below 14.0.0

I have checked my app build.gradle file and these are the only lines that are related to firebase in them /*** * Firebase */ implementation 'com.google.firebase:firebase-core:15.0.0' implementation…
31
votes
1 answer

Calling Firebase Analytic's getInstance() every time vs. storing instance as a static variable in Application class

I'm trying decide which of the following is the proper way to do this: Calling FirebaseAnalytics.getInstance(Context) from every activity, fragment, and service that I'm logging an event from. or Calling FirebaseAnalytics.getInstance(Context)…
fahmy
  • 3,543
  • 31
  • 47