0
votes

I've just added a firebase analytics custom event on the client-side as below:

Bundle params = new Bundle();
params.putString("uid", uid);
// gender value would be either 1 or 0
params.putString("gender", gender);
MyApp.getInstance().getFirebaseAnalytics().logEvent("completed_profile", params);

I went to Firebase Analytics dashboard and found parameters seem to be not working? enter image description here

Anyway I can set gender info properly?

1

1 Answers

0
votes

You cannot set the gender/age info. That information will be automatically collected from the user's google account with which he logged in to download your app from the play store.