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);