Skip to content Skip to sidebar Skip to footer

Firebase Analytics Are Not Appearing In The Dashboard

I have integrated Firebase Analytics by following their documentation And I have also downloaded their sample app, in both the cases I am getting these message in the logs and in b

Solution 1:

The logcat looks healthy. "D/FA: Logging event" line show you that you have successfully logged the event. Please make sure the app is using the correct project id. The id is set in mobilesdk_app_id value in google-services.json file. You might be sending data to another project. One of the first lines that Firebase Analytics logs is the app package and firebase project it. Make sure it matches your Firebase project.

Solution 2:

Your logs suggest that even though call to

Logging Event (FE): _s, Bundle[{_o=auto}]

is successful, yet the Event is not scheduled to be uploaded to the Firebase Console.

Do you have any components which are running in some other process in your app? Because if you are trying to log a event from a non-main process component, it will not get scheduled to be uploaded to Firebase. The reason for this is that the non-main process will have its Application object instantiated but no ContentProviders (as they are instantiated only in the main process). Therefore Firebase initialisation can only happen in the main process.

Another reason could be if your client-id inside google-services.json file does not match with the client-id specified on Firebase. Please provide some more information if this doesn't solve your problem.

Hope this helps.

Post a Comment for "Firebase Analytics Are Not Appearing In The Dashboard"