D4rWiNS
D4rWiNS

Reputation: 2615

Firebase Analytics events dont show values

I am new in Firebase and I am trying to understand it, I want to track whitch achievements( by my id) my users unlocks

I saw lot of post about this like this where it says

Currently, parameter reporting is offered only on a subset of suggested events. If you need to access your custom parameters, you can link your app to BigQuery and run queries on the raw data there.

So as far as I understand, It should show the values of the suggested events,but I dont even get that values, I am getting the events but not the values, My console shows no values.

I am doing something bad on the code? I am misunderstanding events? Or is Firebase not working as it should?

Code sending to firebase my id

 Bundle bundle = new Bundle();
 bundle.putString(FirebaseAnalytics.Param.ACHIEVEMENT_ID, Integer.toString(lm.logros[a].id));
 mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.UNLOCK_ACHIEVEMENT, bundle);

Upvotes: 1

Views: 2204

Answers (1)

Arnav M.
Arnav M.

Reputation: 2609

For accessing all the data(in your case the values part) that you log in Firebase Analytics.. you have to link firebase to use Google Big Query service that's not available for Free.

Upvotes: 6

Related Questions