Mel
Mel

Reputation: 695

How to use default user properties with firebase Analytics

I've read on the doc that firebase uses the Android Advertising ID or Apple IDFA to get demographics (age, gender) however this information doesn't show up in the analytics.

Is there some additional steps that need to be done in order to activate or link these informations to the Analytics? I'm currently using some custom userProperties but it would be good to know why the default ones doesn't work.

Upvotes: 0

Views: 753

Answers (1)

michalbrz
michalbrz

Reputation: 3494

There are two places to check for demographics data:

  1. Analytics > Audiences section, what you probably want here is the audience that should be automatically created - "All users".
  2. Events > go into any event detail.

In both cases you should see location, gender, age. Also have in mind that because of privacy reasons

  • you need at least a few users (I think the limit is 10) for some of this data to be shown, so it might not show up in small test project
  • This data doesn't get exported to BigQuery at all - because then you could identify it with a particular user

Upvotes: 0

Related Questions