Skip to main content

All Questions

1 vote
0 answers
428 views

Firebase Analytics screen view event not loging screen name every time

I've setup a fonction to log screen envents from my android app. FirebaseAnalytics mFirebaseAnalytics = FirebaseAnalytics.getInstance(activity); Bundle bundle = new Bundle(); if (screenName.length() ...
Marius Mazeillé's user avatar
4 votes
1 answer
1k views

Firebase Analytics: Parameter name selection for event is empty even though I have setup custom definition

This is how I log firebase event in my app public static void trackGAEvent(String name, String screenName) { FirebaseAnalytics firebaseAnalytics = Utils.getFirebaseAnalytics(); if (...
Cheok Yan Cheng's user avatar
3 votes
2 answers
933 views

FATAL EXCEPTION: firebase-installations-executor-2 (Android)

This crash is only happening when the app is downloaded from the Play Store. The activity opens up and stays fine for a few seconds but just after that.. this is happening: 2022-02-12 22:32:50.927 ...
Sujal Kumar's user avatar
  • 1,114
1 vote
1 answer
2k views

How to disable Firebase Analytics Automatic Events Only

We have been using Firebase Analytics to track custom events that we have in our app. We noticed that some events are logged by Firebase Automatically that are mentioned here. And real frustration is ...
Dawood Ilyas's user avatar
0 votes
1 answer
759 views

Firebase not responding in android studio

I am trying to insert user data into the real-time database(Firebase). But when I run the app on an emulator or on my phone it just keeps loading(I set up a loadingBar to dismiss when a response is ...
Bryne Phiri's user avatar
2 votes
0 answers
479 views

Firebase Analytics Event does not support array parameters error

I specially created an event in firebase analytics. I am getting an error Bundle item1 = new Bundle(); item1.putString(Param.ITEM_ID, "item1"); Bundle item2 = new ...
Murat Aktay's user avatar
2 votes
2 answers
1k views

How to use Firebase Analytics in some other class which is not an Activity class in Android?

We know that, we can log event in an activity using the code: FirebaseAnalytics.getInstance(this).logEvent("hello", new Bundle()); Suppose I have this class "Student", which is a ...
Md. Mahir Labib's user avatar
0 votes
1 answer
2k views

Firebase Analytics - Realtime works intermittently

My app uses Firebase Analytics to track usage. I'm testing my app locally and trying to view the Realtime analytics. Sometimes it works and I can see my one realtime user and events, other times it ...
Spark323's user avatar
  • 1,575
0 votes
1 answer
531 views

Firebase Analytics initialization in Kotlin vs Java

I'm wondering why initialization of Firebase Analytics in Kotlin doesn't need context, but Java does need? From documentation: Java: mFirebaseAnalytics = FirebaseAnalytics.getInstance(context); ...
researcher's user avatar
  • 1,788
1 vote
0 answers
84 views

How to manage screen to screen events with time spent by each user using Firebase Analytics

I am using Firebase Analytics in my Android app. I have done all the basic setup as per the Firebase documentation. I am also able to log the data in the Firebase console. but I want some specific ...
Kutbi's user avatar
  • 1,154
0 votes
1 answer
71 views

Can I use Firebase Analytics to fetch data from an Android app and show it on a Java Swing desktop app?

I have an Android application which is a social network based on movies. People can search for movies and create personalized movie lists, but also add friends and use basic social media ...
outsidethecave's user avatar
1 vote
0 answers
122 views

Firebase Event missing Parameters in Android

we are using the Firebase Analytics. Where we posting some custom events and detailed parameters. Those parameters are available during Debug view i.e we can see the values and keys But not on the ...
Rahish's user avatar
  • 165
1 vote
1 answer
365 views

Custom tracking events Firebase

Does anyone know what to write in ITEM_ID and ITEM_NAME? Bundle bundle = new Bundle(); bundle.putString(FirebaseAnalytics.Param.ITEM_ID, id); bundle.putString(FirebaseAnalytics....
Sachin Swami's user avatar
4 votes
2 answers
1k views

Set Item arraylist to firebase analytics event in ADD_TO_CART not working (Android)

My code for add_to_cart in firebase event is as follows: public void addToCartEvent(ArrayList<ServiceModel>items, String currency, Long value){ ArrayList<Bundle> products = new ...
binaryakash's user avatar
0 votes
0 answers
45 views

Android Firebase: How do I record the rating value in Firebase Analytics?

I have made a feedback app with 5 imageViews each containing a rating from 1-5 (using setTag). The user clicks on one of the imageViews and the app sends the rating value (using getTag) to Firebase ...
Arpit Mundra's user avatar

15 30 50 per page